Dicas de GIT

Algumas dicas de GIT

// mudar para outro branch

git checkout { nome do branch }

// fazer merge de um branch com outro

git checkout { nome do branch destino }
git pull origin { nome do branch destino }
git merge { nome do branch origem }
git push origin { nome do branch destino }

// ver em que branch estamos

git branch

// ver o status do branch

git status

// clone into folder with files in it
git init
git remote add origin PATH-TO-REPO.git


2016-09-29