summaryrefslogtreecommitdiff
path: root/demo-script
diff options
context:
space:
mode:
authorLeonid Volnitsky <Leonid@Volnitsky.com>2008-06-25 21:14:32 +0300
committerLeonid Volnitsky <Leonid@Volnitsky.com>2008-06-25 21:14:32 +0300
commit53dfa42e569602b0b5098f0aa2ceb1c35a7f9d59 (patch)
tree4be76cac6420ec696238e4d8c7debf07fe6a884e /demo-script
parentfix: svn state (diff)
downloadgit-prompt-53dfa42e569602b0b5098f0aa2ceb1c35a7f9d59.tar.gz
git-prompt-53dfa42e569602b0b5098f0aa2ceb1c35a7f9d59.tar.bz2
git-prompt-53dfa42e569602b0b5098f0aa2ceb1c35a7f9d59.zip
new Makefile; renamed demo-scrip --> git-demo
Diffstat (limited to 'demo-script')
-rw-r--r--demo-script34
1 files changed, 0 insertions, 34 deletions
diff --git a/demo-script b/demo-script
deleted file mode 100644
index 69245e6..0000000
--- a/demo-script
+++ /dev/null
@@ -1,34 +0,0 @@
-set +xv
-. /t/prompt/prompt
-test -d demo && rm -rf demo/
-test -d ../demo && cd .. && rm -rf demo/
-clear
-mkdir demo
-cd demo
-git init
-echo "1st line" > FOO
-git add FOO
-touch untracked.o
-rm untracked.o
-git commit -q -m "FOO's 1st line"
-git checkout -b test
-echo "added 2nd line in test" >> FOO
-git add FOO
-echo "1st BAR" > BAR
-git add BAR
-echo "added 3nd line" >> FOO
-git add FOO
-git commit -q -m "FOO moded, BAR added"
-git checkout master
-cat FOO
-echo "now added 2nd line in master" >> FOO
-git add FOO
-git commit -q -m "2nd line"
-git merge test
-git-cat-file -p test:FOO > FOO
-git add FOO
-git commit -q -m "merged"
-cat FOO
-git checkout HEAD^
-cat FOO
-git checkout master