Created
November 12, 2014 10:06
-
-
Save wwwbruno/8d4090bbf6582b7678c7 to your computer and use it in GitHub Desktop.
Ordem cronológica básica do git
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Atualizar meu repositório local | |
git pull origin master | |
# Faço as alterações necessárias no código | |
# Verifico o que foi modificado | |
git status (opcional) | |
# Caso precise de mais detalhes | |
git diff (opcional) | |
# Adiciono os arquivos para commitar | |
git add --all | |
# Faço a mensagem do commit | |
git commit -m "Aqui eu digo o que eu fiz" | |
# Envio os commits para o repositório remoto | |
git push origin master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
tks