Cheatography
https://cheatography.com
Comandos mais utilizados no GIT
This is a draft cheat sheet. It is a work in progress and is not finished yet.
Criando repositório
cd pasta_diretório |
git init |
git add . |
De outro repositório
git clone repositorio_existenteounovo |
|
|
Alterações locais
git status |
git diff |
git add arquivo.txt |
git rm arquivo.txt |
git rm dir/ -r |
git diff --cached |
git commit |
git commit -m "Mensagem" |
git commit -a -m "Mensagem" |
git checkout -- file |
|
|
Merge e Rebase
git merge branch |
git rebase branch |
git rebase master branch |
git rebase --abort |
git mergetool |
git rebase --continue |
Histórico
git log |
git log -p |
git log arquivo |
git log dir/ |
git log --stat |
git blame arquivo |
|
|
Branch e Tagg
git branch |
git checkout branch |
git branch new |
git branch -d nome_branch |
git tag nome_tag |
Update e Publish
git remote -v |
git remote show remote |
git remote add path/url |
git fetch remote |
git pull remote branch |
git push remote branch |
git push remote :branch |
git push --tags |
|