Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Mercurial - compare local and remote repositories?

Tags:

mercurial

In Git, there is the command

git remote show <remote>

When properly configured, this will show you the status of the remote compared to your local repository, including whether there are pending changes in either. I can't find a similar command in Mercurial. Am I missing something or does it just not exist?

like image 410
Chris Avatar asked Jan 19 '23 02:01

Chris


1 Answers

Perhaps hg summary --remote?

like image 194
Tim Henigan Avatar answered Feb 23 '23 20:02

Tim Henigan