$ git config --global user.name "John Doe"
$ git config --global user.email johndoe@example.com
CREATING A REPOSITORY
$ git init
CLONING A REPOSITORY
$ GIT CLONE HTTPS://GITHUB.COM/DBRGN/FAHRPLAN
$ git add README.rst
$ git rm file.py
$ git commit -am 'First commit'
$ git log
$ git show
$ git diff
$ git checkout -- file.py
$ git revert 1776f5
$ git branch iss53
$ git checkout -b iss53 master
$ git checkout iss53
$ git branch -d iss53
$ git branch -d iss53 iss53
* master
testing
$ git push origin branch_name
$ git pull
$ git fetch origin
$ git merge origin master
$ git merge iss53 Auto-merging index.html CONFLICT (content): Merge conflict in index.html Automatic merge failed; fix conflicts and then commit the result.