On 21/02/12 11:10, Axel Bender wrote:
Being new to Mercurial a quick question:

How would I "roll back" a source code version e.g. from 7.3.446 to 7.3.441?

--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

If you want to compile patchlevel 7.3.441, you change nothing to the structure of changesets in your hg clone, but you "update" your "working directory" to the appropriate revision:

        hg up -r v7-3-441

This updates all your sources to the state corresponding to the tag v7-3-441 which means “patchlevel 7.3.441”.

You would then run (for instance, on Unix/Linux/MacOSX, and in a bash-like shell)

        (source myconfig && make reconfig && make install) \
                | tee -a ../vim-make.log 2>&1

see
        hg help up
        hg help revisions
        hg log --pager false -l 5
        http://users.skynet.be/antoine.mechelynck/vim/compunix.htm
        http://vim.wikia.com/wiki/Getting_the_Vim_source_with_Mercurial


Best regards,
Tony.
--
The greatest lies of all time:
  (1) The check is in the mail.
  (2) We have a really challenging assignment for you.
  (3) I love you.
  (4) That bug has been fixed.
  (5) This won't hurt a bit.
  (6) The Mercedes is paid for.
  (7) I have just sent you an e-mail about that.
  (8) Of course I'll respect you in the morning.
  (9) I'm from the government, and I'm here to help you.

--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

Reply via email to