Posts by henriquehbr • 101 points
2 posts
-
0
votes1
answer55
viewsA: How to reverse the most recent submissions in git?
$ git commit -m "Enviado por engano" (1) $ git reset HEAD~ (2) << edite os arquivos como for necessário >> (3) $ git add ... (4) $ git commit -c ORIG_HEAD (5) This is what you want to…
gitanswered henriquehbr 101 -
0
votes1
answer55
viewsQ: How to reverse the most recent submissions in git?
I accidentally sent the wrong files in Git, but haven’t put them on the server yet. How can I undo these Git appointments?
gitasked henriquehbr 101