Git
- Create repository (on server)
git init
- add files
git add *
- commit changes
git commit -m "Commit-Nachricht"
- send changes to server
git push
- get latest changes from server
git pull
git init
git add *
git commit -m "Commit-Nachricht"
git push
git pull