From cfa183e5546134415eff2819358fbf8fc5819524 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rog=C3=A9rio=20Fr=C3=A1?= Date: Wed, 7 Dec 2016 14:33:10 -0200 Subject: [PATCH] Create howtogit.rst --- docs/howtogit.rst | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 docs/howtogit.rst diff --git a/docs/howtogit.rst b/docs/howtogit.rst new file mode 100644 index 000000000..926d3193b --- /dev/null +++ b/docs/howtogit.rst @@ -0,0 +1,41 @@ +De forma muito simples e em linhas gerais o básico sobre GIT + +Glosário +--------- + + Git - Sistema de controle de versão de aquivos + + GitHub - É um serviço web que oferece diversas funcionalidades extras aplicadas ao git + + Branch - Significa ramificar seu projeto, criar um snapshot. + + Merge - Significa incorporar seu branch no master + + +Pode ser útil +------------- + +Atualizar a base local: + + git pull --rebase git://github.com/interlegis/sapl + +Exibir informações: + + git status + + +Na base local descartar alguma alteração feita nos arquivos: + + git checkout sapl/legacy_migration_settings.py + +Atualizar para alguma brach especifica (ex:785-atualizar-migracao): + + git checkout 785-atualizar-migracao + +Voltar para a branch master + + git checkout master + +Verificar 5 ultimos comits: + + git log --oneline -n 5