forked from repowerednl/GitHub-Workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclutter.sh
executable file
·44 lines (44 loc) · 2.23 KB
/
clutter.sh
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
git checkout -b 'new-feature'
printf "1. Discovery of Git" >> story.txt
git add . && git commit -m "start"
printf "\n" >> story.txt
git add . && git commit -m "spaces"
printf "Once upon a time, in a digital realm, a young coder named Jeroen stumbled upon an ancient artifact called Git, said to hold the power of collaboration over code." >> story.txt
git add . && git commit -m "story"
printf "\n\n" >> story.txt
git add . && git commit -m "new section"
printf "2. The Message" >> story.txt
git add . && git commit -m "the message"
printf "\n" >> story.txt
git add . && git commit -m "spaces"
printf "While exploring a repository, he found a mysterious file, README.md, containing the message: Every word counts. Each change matters." >> story.txt
git add . && git commit -m "story part 2"
printf "\n\n" >> story.txt
git add . && git commit -m "new section"
printf "3. Conflict Arises" >> story.txt
git add . && git commit -m "conflict"
printf "\n" >> story.txt
git add . && git commit -m "spaces"
printf "As Jeroen learned to create branches and push changes, chaos ensued. He faced rival coder Jamie, who exclaimed, You’ve overwritten my changes!" >> story.txt
git add . && git commit -m "story part 3"
printf "\n\n" >> story.txt
git add . && git commit -m "new section"
printf "4. Finding Common Ground" >> story.txt
git add . && git commit -m "Common ground"
printf "\n" >> story.txt
git add . && git commit -m "spaces"
printf "Realizing the importance of communication, Jeroen suggested, Let’s resolve this together. They collaborated on the changes, carefully considering each word.!" >> story.txt
git add . && git commit -m "working with jamie"
printf "\n\n" >> story.txt
git add . && git commit -m "new section"
printf "5. A New Understanding" >> story.txt
git add . && git commit -m "teamwork"
printf "\n" >> story.txt
git add . && git commit -m "spaces"
printf "Through teamwork, they merged their work beautifully. Jeroen learned that Git was about collaboration and respect for every change, embracing the idea that in the world of Git, every word counts." >> story.txt
git add . && git commit -m "story part"
printf "\n\n" >> story.txt
git add . && git commit -m "new section"
printf "The End\n" >> story.txt
git add . && git commit -m "end"
git push -u origin HEAD