52:17b5c2356d70
Anton Shestakov <engored@ya.ru>, Thu, 04 Sep 2014 16:11:09 +0900
New screenshots and an updated readme.

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

docs/prompt-session-git.sh

Permissions: -rw-r--r--

Other formats: Feeds:
#!/bin/false
# paste this into an interactive shell
cd "$(mktemp -d)" && git init gitrepo && cd gitrepo
echo 'a' > foo
git add foo
git commit -m 'a'
echo 'b' >> foo
git commit -a -m 'b'
git checkout -q HEAD@{1}
git checkout -b secret
echo 's' >> foo && git commit -a -m 's'
git merge master --strategy=ours --no-commit