File tree 1 file changed +7
-7
lines changed
1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 28
28
29
29
\begin {frame }[fragile]
30
30
\frametitle {Git crash course}
31
- \begin {minted }[gobble=4]{bash }
32
- # git init myProject
31
+ \begin {minted }[gobble=4]{shell-session }
32
+ $ git init myProject
33
33
Initialized empty Git repository in myProject/.git/
34
34
35
- # vim file.cpp; vim file2.cpp
36
- # git add file.cpp file2.cpp
37
- # git commit -m "Committing first 2 files"
35
+ $ vim file.cpp; vim file2.cpp
36
+ $ git add file.cpp file2 .cpp
37
+ $ git commit -m "Committing first 2 files"
38
38
[master (root-commit) c481716] Committing first 2 files
39
39
...
40
40
41
- # git log --oneline
41
+ $ git log --oneline
42
42
d725 f2 e Better STL test
43
43
f24 a6 ce Reworked examples + added stl one
44
44
bb54 d15 implemented template part
45
45
...
46
46
47
- # git diff f24a6ce bb54d15
47
+ $ git diff f24a6ce bb54d15
48
48
\end {minted }
49
49
\end {frame }
You can’t perform that action at this time.
0 commit comments