Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to generate a bundle of patches from TortoiseHG 2.0.5, Changeset Ranges

Hi I am trying to use the version 2.0.5., how do me make a bundle of all the changes from a certain revision to tip?

like image 454
learning Avatar asked Jul 04 '11 07:07

learning


2 Answers

In TortoiseHg 2.1 Workbench:

  1. Right-click on the revision.
  2. Go to the Export submenu.
  3. Click on Bundle rev to tip...
  4. Choose where to save the bundle.
like image 196
Joel B Fant Avatar answered Oct 07 '22 15:10

Joel B Fant


You could use hg bundle for the task:

hg bundle -r tip --base REV v2.0.5

The above will create a bundle with changesets from REV to tip.

like image 32
Alan Haggai Alavi Avatar answered Oct 07 '22 14:10

Alan Haggai Alavi