Mercurial > hg
view tests/test-1102 @ 7239:135003a470f3
Bookmarks: Add the bookmarks extension
Mercurial bookmarks are local moveable pointers to changesets.
If you commit a changeset that is based on a changeset that has a
bookmark on it, the bookmark is forwarded to the new changeset.
Thanks to Ian Dees, Ronny Pfannschmidt for their patches,
Thanks to ronny, tonfa, prianha, mpm, #mercurial for their comments
and their support that helped me to get things done.
author | David Soria Parra <dsp@php.net> |
---|---|
date | Wed, 22 Oct 2008 21:53:27 +0200 |
parents | 938eddd76237 |
children |
line wrap: on
line source
#!/bin/sh rm -rf a hg init a cd a echo a > a hg ci -Am0 hg tag t1 # 1 hg tag --remove t1 # 2 hg co 1 hg tag -r0 t1 hg tags