55:63de59630d29
Anton Shestakov <engored@ya.ru>, Sun, 07 Sep 2014 01:36:29 +0900
More commands in hg sessions: closed branch, tags, bookmarks.

next change 56:49435f917654
previous change 47:9e4577696f1e

docs/prompt-session-hg.sh

Permissions: -rw-r--r--

Other formats: Feeds:
#!/bin/false
# paste this into an interactive shell
cd "$(mktemp -d)" && hg init hgrepo && cd hgrepo
echo 'a' > foo && hg add foo
hg ci -m 'a'
echo 'b' >> foo && hg ci -m 'b'
hg up 0 -q
hg branch secret -q
echo 's' >> foo && hg ci --secret -m 's'
hg ci --close-branch -m 'done here'
hg up default -q && hg merge secret -q --tool=internal:local
hg ci -m 'merge'
hg tag 0.1 && hg up -q 0.1
hg up -q && hg bookmark @