Git Quick Comands
git init
git clone /caminho/para/o/repositório
git add caminho/do/arquivo.html or git add .
git commit -m "comentários das alterações"
git push origin master
git config user.email "SEUEMAIL@gmail.com"
git checkout -b the_branch
git checkout master
git branch -d the_branch
git push origin the_branch
git branch
git pull origin master
git merge the_branch
git branch -d the_local_branch
git push origin --delete the_remote_branch
git config credential.helper store
git fetch
username: adas
password: asdasd
git clean -fd