-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfix2.txt
More file actions
51 lines (32 loc) · 890 Bytes
/
fix2.txt
File metadata and controls
51 lines (32 loc) · 890 Bytes
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
git init
touch README.md
nvim README.md
git add README.md
git commit -m "init commit"
git branch feature1
git checkout feature1
git add README.md
git commit -"added dog and replaced moose with mouse in README"
git switch main
git commit -a -m "replaced mouse with mammoth in README"
git merge feature1
git add README.md
git commit -m "Merged feature1 into main"
git reset 413a
git branch feature1
git commit -a -m "Capitalized animal names"
git switch feature2
git add fix1.txt
git commit -m "added fix1.txt"
git add fix2.txt
git commit -m "added fix2.txt"
git switch main
git cherry-pick 4839
git branch cleanup_test
git switch cleanup_test
git commit -a -m "added bird to readme"
git commit -a -m "added fish to readme"
git commit -a -m "added snake to readme"
git rebase -i main
git commit -a -m "addid turtle to readme"
git commit --amend -m "added turtle to readme"