> git config --global user.name "Mona Lisa" > git config --global user.email "email@example.com" > ssh
> git init > git remote add <name> <address> > git clone <address>
> git add <filename> > git add * > git commit -m "<message>" > git commit -am "<message>"
> git pull > git push
> git checkout -b <branch_name> > git checkout <branch_name> > git branch --set-upstream <branch_name> origin/<branch_name> > git checkout -d <branch_name> > git checkout -d origin/<branch_name> > git fetch > git checkout <branch_name>
> git merge <branch>
> git tag <version>
By Alex Albu