-
Notifications
You must be signed in to change notification settings - Fork 0
/
history.txt
93 lines (93 loc) · 2.16 KB
/
history.txt
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
87
88
89
90
91
92
93
1 cd Desktop
2 cd planets
3 ls
4 git log
5 nano mars.txt
6 git diff HEAD mars.txt
7 git diff HEAD~1 mars.txt
8 git diff HEAD~2 mars.txt
9 git diff mars.txt
10 ls -a
11 git log --oneline
12 git diff 4fce25d mars.txt
13 git diff HEAD~2 mars.txt
14 git log
15 git status
16 git restore mars.txt
17 cat mars.txt
18 git log
19 git log --oneline
20 git restore -s 4fce25d mars.txt
21 cat mars.txt
22 git status
23 git diff mars.txy
24 git diff mars.txt
25 git restore mars.txt
26 git status
27 git log --oneline
28 git log
29 git log --oneline
30 git log mars.txt --oneline
31 git log --oneline mars.txt
32 git log --oneline
33 git restore 4fce25d mars.txt
34 git restore -s 4fce25d mars.txt
35 git diff mars.txt
36 git status
37 git add mars.txt
38 git status
39 git restore --staged mars.txt
40 git status
41 git restore mars.txt
42 git status
43 cat mars.txt
44 git log
45 git log --oneline
46 echo "Line 1" > venus.txt
47 git add venus.txt
48 echo "Line 2" >> venus.txt
49 git commit -m "Comment on Venus"
50 git restore venus.txt
51 cat venus.txt
52 git log --oneline
53 git restore -s 8a0d27b venus.txt
54 ls
55 git status
56 restore venus.txt
57 git restore venus.txt
58 mkdir results
59 touch a.dat b.dat c.dat results/a.out results/b.out
60 ls
61 cd results
62 ls
63 cd ..
64 git status
65 nano .gitignore
66 git status
67 git add .gitignore
68 git commit -m "Ignore data files and results folder"
69 git log --oneline
70 git status
71 git status --ignored
72 nano .gitignore
73 cd ..
74 cd ,,
75 cd ..
76 cd git
77 ls
78 cd thesis
79 git log --oneline
80 git log
81 history
82 history
83 cd ..
84 cd ..
85 cd Desktop/
86 cd planets
87 history > history.txt
88 git log
89 git status
90 history > history.txt
91 git remote add origin https://github.com/kleuveld/planets.git
92 git push origin main
93 history > history.txt