0

1

One thing I like about git is that it tells me my status compared to the remote repo. For instance:

git status

yields

# On branch master
# Your branch is ahead of 'origin/master' by 1 commit.

Is there a way to enable something similar in hg? It helps me track whether I have changes to push remotely or not.

flag

1 Answer

2

hg incoming: see if the remote repo has changes not yet in your local copy.

hg outgoing: see if your local copy has changesets not present in the remote.

hg next: a command provided by the "gestalt" extension distributed by Fog Creek which combines the above two commands. See hg help gestalt if you have the extension installed.

link|flag
is there a convenient way to tie this into hg st? Coming from SVN I always forgot to push my changes, this helps remind me. – bradley Nov 19 2010 at 20:38

Your Answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.