In Mercurial (hg), how do you see a list of files that will be pushed if an "hg push" is issued? -


We can see all the changes and files included by using

  hg outgoing-v  

But file names are scattered in the list of all changes.

Is there a way to see a list of all the files, which is issued HG push ?

First of all, create a file with this content:

  Changeset = "{files}" file = "{file} \ n"  

Assuming you get it out-of-the-box. The test is called and put it in your home directory. You can then give this command:

  hg -q outgoing --style ~ / out-style.txt | Sort-U  

Comments

Popular posts from this blog

windows - Heroku throws SQLITE3 Read only exception -

lex - Building a lexical Analyzer in Java -

python - rename keys in a dictionary -