Using Mercurial, how can I see what changes have yet to be pushed? -
I am used for git, where you can run gitk and get something like the following: < / P>
Here you can see that there are some changes, which are needed to put pressure on the remote branch. Alternatively, I can use the git log --decorate and the output will be:
b8c2926 ... (refs / heads / next) update instructions 6d9f914 ... Add the first to the general x compilation 49a6dac ... (refs / remotes / github / next) Ignore temporary files Is there anything with such a mercurial?
HG Outgoing - will show you the changes that will be sent to a remote repository Are pushing on.
hg incoming - Displays new changes in remote repositories.
Comments
Post a Comment