-
Notifications
You must be signed in to change notification settings - Fork 0
/
rebass_create_git_history.bat
86 lines (86 loc) · 2.08 KB
/
rebass_create_git_history.bat
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
md rebass
cd rebass
git init -b main .
echo kickdrum > kickdrum
git add kickdrum
git commit -m "4/4 LinnDrum kick pattern #doof"
git push
git checkout -b cymbals
echo cymbals > cymbals
git add cymbals
git commit -m "Pi-hat and crash cymbal loop"
git commit --amend -m "Hi-hat and crash cymbal loop"
git push --set-upstream origin cymbals
git checkout -b drums
echo snare > snare
git add snare
git commit -m "Electro snare with NAND gate reverb"
git push --set-upstream origin drums
git checkout main
git checkout -b bass
echo bass > bass
echo bass >> song
git add bass
git add song
git commit -m "Import legacy code bass"
git push --set-upstream origin bass
git checkout main
git checkout -b echo-guitar
echo echo guitar > echo-guitar
echo echo guitar > song
git add echo-guitar
git add song
git commit -m "echo echo guitar > echo-guitar"
git push --set-upstream origin echo-guitar
git checkout main
git checkout -b guitar2
echo guitar2 > guitar2
git add guitar2
git commit -m "Kernel panic! at the disco"
git push --set-upstream origin guitar2
git checkout bass
git checkout -b all-the-guitars
echo conflict > song
git add song
git commit -m "simulate merge conflict"
git merge echo-guitar
echo resolved >> song
git add song
git commit -m "Resolved merge conflict"
git push --set-upstream origin all-the-guitars
git merge drums
git merge guitar2
git push
git checkout main
git checkout -b synth-bass
echo synth-bass > synth-bass
git add synth-bass
git commit -m "Time sequence data bass"
git push --set-upstream origin synth-bass
git merge drums
git push
git checkout -b synth-pads
echo right-pad > right-pad
echo left-pad > left-pad
git add right-pad
git add left-pad
git commit -m "Add right-pad and left-pad"
git push --set-upstream origin synth-pads
git checkout -b all-the-things
git merge all-the-guitars
git push
git checkout main
echo vocoder > vocoder
git add vocoder
git commit -m "Vocoder #daftpunk #gitlucky"
git push
git merge echo-guitar
git push
git rebase all-the-things
git pull
git push
echo lead-guitar > lead-guitar
git add lead-guitar
git commit -m "Tech lead guitar"
git push
cd ..