Jan Walraven
DevOps



Menu
Categories:
Posted on

Git cheatsheet

Add sourcecode to local Git repo


git init
git add .
git commit -m "first commit"

Status


git status

Get updates from remote repo


git pull

Send updates to remote repo


git push