Once I have locally commited my code, doing either hg status or git status will not show me the files I have already committed (but not pushed).
How can I view the files that are ready to be pushed?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
For Mercurial you simply do :
Or you can do
hg outwhich is the shorthand of theoutgoingcommand.outgoingtake some arguments to refine the output or show additionnal information, you can see the help by doinghg help outgoing.For example, if you want to see the diff with the remote repository, add the
patchoption :