Wiki source code of Git

Last modified by Jan Mewes on 2018/02/21 22:45

Show last authors
1 # Introduction
2
3 # Getting started
4 ## Configuration
5 TBD
6
7 ## First commit
8 ```
9 git init
10 touch testfile
11 git add .
12 git commit -m "Initial commit"
13 ```