Mercurial > hg
view tests/bundles/rebase.sh @ 15264:157d93c41c10
merge: expand environment variables and ~/ in tool.executable
hgrc(5) already implies that this works, so we might as well support it.
Another approach would be to implement this in util.findexe(): that
would benefit other callers of findexe(), e.g. convert and anyone
calling the user's editor. But findexe() is really implemented in
both posix.py and windows.py, so this would make both of those modules
depend on util.py: not good. So keep it narrow and only for merge
tools.
author | Greg Ward <greg@gerg.ca> |
---|---|
date | Wed, 12 Oct 2011 21:45:58 -0400 |
parents | 624e5ce615ec |
children | 5d57b2101ab1 |
line wrap: on
line source
#!/bin/bash hg init rebase cd rebase # @ 7: 'H' # | # | o 6: 'G' # |/| # o | 5: 'F' # | | # | o 4: 'E' # |/ # | o 3: 'D' # | | # | o 2: 'C' # | | # | o 1: 'B' # |/ # o 0: 'A' echo A > A hg ci -Am A echo B > B hg ci -Am B echo C > C hg ci -Am C echo D > D hg ci -Am D hg up -q -C 0 echo E > E hg ci -Am E hg up -q -C 0 echo F > F hg ci -Am F hg merge -r 4 hg ci -m G hg up -q -C 5 echo H > H hg ci -Am H hg bundle -a ../rebase.hg cd .. rm -Rf rebase