git usage
super easy explanation given in this link
the usual workflow for changing is as follows:
- local changes
- add: local index
- commit: local head
push: repository
the commands:
- adding files:
- git add <file>
- git add *
- committing changes to local index:
- git commit -m "msg"
- pushing to the repo:
- git push
- git push origin master
- mit repo zu aktualisieren:
- git pull
- check status:
- git status
- set name/email:
$
git config --global user.name"John Doe"
$
git config --global user.email johndoe@example.com