56:49435f917654
Anton Shestakov <engored@ya.ru>, Sun, 07 Sep 2014 18:58:52 +0900
Make one temp dir for every prompt session, make git quiet.

next change 67:0a7e0a69a670
previous change 47:9e4577696f1e

docs/prompt-session-git.sh

Permissions: -rw-r--r--

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