diff options
author | Primal Pappachan | 2012-01-31 17:22:56 +0530 |
---|---|---|
committer | Primal Pappachan | 2012-01-31 17:22:56 +0530 |
commit | 2fe9153d1ae3c4eb0a32ef6bf360ad38c501098e (patch) | |
tree | f70c6aa2ece78bd6020a7bd10c64176b38c93160 /Version_Control | |
parent | aabd889057e3387f32e37e940bcc10df5d2fbcb5 (diff) | |
download | sdes-stscripts-2fe9153d1ae3c4eb0a32ef6bf360ad38c501098e.tar.gz sdes-stscripts-2fe9153d1ae3c4eb0a32ef6bf360ad38c501098e.tar.bz2 sdes-stscripts-2fe9153d1ae3c4eb0a32ef6bf360ad38c501098e.zip |
rst Formatted
Diffstat (limited to 'Version_Control')
-rw-r--r-- | Version_Control/vcs3/vcs3.rst | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Version_Control/vcs3/vcs3.rst b/Version_Control/vcs3/vcs3.rst index df4a925..47940f5 100644 --- a/Version_Control/vcs3/vcs3.rst +++ b/Version_Control/vcs3/vcs3.rst @@ -269,6 +269,7 @@ Here are some self assessment questions for you to solve #. How to accomplish not saving backup files using hg revert command? #. Get the history of revisions 2 to 4 without having to list each revision? #. Print the description and content of a change. Hint: Use --patch option + .. L20 *{{{ Solution of self assessment questions on slide }}}* @@ -276,9 +277,9 @@ Here are some self assessment questions for you to solve .. R20 And the answers, -#. hg revert -C --no-backup -#. hg log -r 2:4 -#. hg log -v -p -r 2 +1. hg revert -C --no-backup +2. hg log -r 2:4 +3. hg log -v -p -r 2 .. L21 |