Learn git: github.com/git-learning-game/oh-my-git
git clone - project holen
git add <file-name>
git commit -m "message" - änderungen speichern
git push - änderungen hochladen
npm install gitignore → gitignore node - ignoriert dateien beim hochladen von node
git config --global user.name "User Name"
git config --global user.email "mail@address.de"
git clone git@git.repo.de:user/wiki.git (or https://git.wieser-hv.de/user/wiki.git)
cd wiki
touch README.md
git add README.md
git commit -m "add README"
git push -u origin master
cd existing_folder
git init
git remote add origin git@git.repo.de:user/wiki.git (or https://git.wieser-hv.de/user/wiki)
git add .
git commit -m "Initial commit"
git push -u origin master
cd existing_repo
git remote rename origin old-origin
git remote add origin git@git.repo.de:user/wiki.git (or https://git.wieser-hv.de/user/wiki)
git push -u origin --all
git push -u origin --tags