diff options
author | Marcel Ribeiro-Dantas <marcel.ribeiro-dantas@curie.fr> | 2022-07-17 14:13:45 +0200 |
---|---|---|
committer | Marcel Ribeiro-Dantas <mribeirodantas@hey.com> | 2022-07-17 14:14:53 +0200 |
commit | c1f78f6c3dfebc29b3acdc92bb6978740c8795df (patch) | |
tree | 8768ee53b7f2c9a74dd2d13747ea2fd6b6f84a9a /pt-br/git-pt.html.markdown | |
parent | 9a41ca68284888ac1e028d43ce68537c1575febd (diff) |
Add git-revert section
Diffstat (limited to 'pt-br/git-pt.html.markdown')
-rw-r--r-- | pt-br/git-pt.html.markdown | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/pt-br/git-pt.html.markdown b/pt-br/git-pt.html.markdown index 34d302d7..5afcfa3f 100644 --- a/pt-br/git-pt.html.markdown +++ b/pt-br/git-pt.html.markdown @@ -491,6 +491,18 @@ $ git reset 31f2bb1 $ git reset --hard 31f2bb1 ``` +### revert + +O comando revert pode ser utilizado para desfazer um commit. Não deve ser +confundido com o comando reset que restabelece o estado do repositório para um +momento anterior. O revert irá criar um novo commit com alterações inversas a +de um outro commit especificado, portanto revertendo aquelas alterações. + +```bash +# Revertendo um commit específico +$ git revert <commit> +``` + ### rm O oposto de git add, git rm remove arquivos da branch atual. |