From b367063b1784cf1b80b91d24d6f9509d33ca6191 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rog=C3=A9rio=20Fr=C3=A1?= Date: Mon, 20 Mar 2017 16:25:39 -0300 Subject: [PATCH] branch, repositorio, commit (#949) --- docs/howtogit.rst | 43 ++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 42 insertions(+), 1 deletion(-) diff --git a/docs/howtogit.rst b/docs/howtogit.rst index 926d3193b..69d6d474a 100644 --- a/docs/howtogit.rst +++ b/docs/howtogit.rst @@ -22,11 +22,46 @@ Atualizar a base local: Exibir informações: git status + + +Ver repositorio + + git remote -v + + +Para definir repositorio + + git remote set-url origin https://github.com/interlegis/sapl.git + + +Para criar um branch + + git checkout -b nome_branch + git add arquivos + +Para remover um branch + + git branch -d nome-branch + + +Para comitar + + git commit -m "Comentário" + +Para enviar o branch + + git push origin nome_branch Na base local descartar alguma alteração feita nos arquivos: - git checkout sapl/legacy_migration_settings.py + git checkout -- + + +Ao invés dissoremover todas as alterações e commits locais, recuperar o histórico mais recente do servidor e apontar para seu branch master local + + git fetch origin + git reset --hard origin/master Atualizar para alguma brach especifica (ex:785-atualizar-migracao): @@ -39,3 +74,9 @@ Voltar para a branch master Verificar 5 ultimos comits: git log --oneline -n 5 + + +Referência: + + http://rogerdudler.github.io/git-guide/index.pt_BR.html + http://tableless.com.br/tudo-que-voce-queria-saber-sobre-git-e-github-mas-tinha-vergonha-de-perguntar/