Show Menu
Cheatography

Comandos GIT Cheat Sheet (DRAFT) by

Comandos mais utilizados no GIT

This is a draft cheat sheet. It is a work in progress and is not finished yet.

Criando reposi­tório

cd pasta_­dir­etório
git init
git add .

De outro reposi­tório

git clone reposi­tor­io_­exi­ste­nte­ounovo

Alterações locais

git status
git diff
git add arquiv­o.txt
git rm arquiv­o.txt
git rm dir/ -r
git diff --cached
git commit
git commit -m "­Men­sag­em"
git commit -a -m "­Men­sag­em"
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_b­ranch
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