Last active
October 20, 2024 19:10
-
-
Save diegoampessan/8471279 to your computer and use it in GitHub Desktop.
Consulta rápida comandos 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
ENVIAR ALTERAÇÕES PARA SERVIDOR REMOTO | |
--- | |
git add . (todas as alteracoes, desde que esteja na pasta root do projeto) | |
git add <diretorio/nome_do arquivo> (para arquivo em especifico) | |
git commit -m "Descrição" | |
git push origin <branch> | |
RECEBER ALTERACOES SERVIDOR | |
--- | |
git pull origin <branch> | |
REMOVER | |
--- | |
git rm <arquivo> (exclui aquivo) | |
git rm -f <diretorio> (exclui todos o diretorio) | |
CRIAR TAGS (histórico de versões estáveis) | |
--- | |
git tag -a <nome_tag> -m "<descrição>" | |
git push origin <nome_tag> | |
REMOVER TAG | |
--- | |
git tag -d <nome_tag> | |
git push origin :<nome_tag> | |
VOLTAR A UM COMMIT ESPECÍFICO | |
--- | |
git reset --hard "<hash_completo_do_commit>" | |
git push origin HEAD --force | |
OUTROS | |
--- | |
git checkout <branch> ou <tag> (mudar para branch ou tag) | |
git checkout -b <branch> (criar e entrar no branch) | |
git branch -d <branch> (excluir branch local) | |
git tag -d <tag> (excluir tag local) | |
git push origin :<branch|tag> (exclui branch|tag remoto) | |
git merge <branch> (incluindo as alteracoes do <branch>, no branch em que voce esta... localmente) | |
git checkout head -- filename ( reverte o arquivo ao estado do ultimo commit ) | |
git log ( Visualiza histórico de commits ) | |
git remote show origin ( mostra informações sobre o repositorio remoto ) | |
touch .gitignore (criar arquivo do gitignore) | |
CHAVE SSH | |
--- | |
ssh-keygen -t rsa -C "seuemail" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Ajudou d+, valeu mesmo!