Hi I am trying to use the version 2.0.5., how do me make a bundle of all the changes fro开发者_高级运维m a certain revision to tip?
In TortoiseHg 2.1 Workbench:
- Right-click on the revision.
- Go to the Export submenu.
- Click on Bundle rev to tip...
- Choose where to save the bundle.
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
.
Updating to 2.1 has solved the problem.
精彩评论