summaryrefslogtreecommitdiff
path: root/demo-script
blob: 2fa37a28b1e5a5cfc791bf10cfdc1859d562ff48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# git
. /t/prompt/prompt
rm -rf tiny.git/
mkdir  tiny.git
cd     tiny.git
git init
echo v1 > a-file
git add a-file
touch  an-untracked
rm     an-untracked
git commit -m v1 a-file
 
 
..
. /t/prompt/prompt 
clear
rm -rf tiny.git/
mkdir  tiny.git
cd     tiny.git
git init
echo v1 > file
git add file
touch  untracked-file
rm     untracked-file
git commit -m v1 file
git checkout -b test
echo 'added 2nd line in test' >> file 
git add file 
git commit -m v2test
git checkout master
cat file 
echo 'now added 2nd line in master' >> file 
git add file
echo 'added 3nd line in master' >> file 
git add file
git commit -m v2
git merge test