File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 2828
2929\begin {frame }[fragile]
3030 \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
3333 Initialized empty Git repository in myProject/.git/
3434
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"
3838 [master (root-commit) c481716] Committing first 2 files
3939 ...
4040
41- # git log --oneline
41+ $ git log --oneline
4242 d725 f2 e Better STL test
4343 f24 a6 ce Reworked examples + added stl one
4444 bb54 d15 implemented template part
4545 ...
4646
47- # git diff f24a6ce bb54d15
47+ $ git diff f24a6ce bb54d15
4848 \end {minted }
4949\end {frame }
You can’t perform that action at this time.
0 commit comments