Created
April 20, 2011 17:51
-
-
Save Draiken/932126 to your computer and use it in GitHub Desktop.
Comandos do git
This file contains 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
git status | |
# mostra o status de tudo, o que foi alterado, o que foi criado, o que foi deletado | |
git add <arquivo> | |
# adiciona o arquivo para ser tracked pelo git | |
git add -A | |
# adiciona todas os arquivos para tracking do git | |
git commit -am '<mensagem>' | |
# commita todas as mudanças com a mensagem no log | |
git push origin master | |
# manda suas mudanças locais para o servidor |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment