The command hg log -v -r 2:5 can be used to see details on changesets 2/3/4/5 – is there a similar way you can view changeset details on JUST changesets 2 and 5?
The command hg log -v -r 2:5 can be used to see details on
Share
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.
Use separate
-rspecifiers:It will give you the log entries in the same order you specify rev numbers.
Here’s a test which demonstrates this:
Now run
hg log -v -r 0 -r 2in the hgTest directory, and you’ll see:Notice there’s no mention of the file
1.txtwhich was added in revision 1.