“Enmendar la confirmación específica” Código de respuesta

Se agregaron cambios a una confirmación específica

git add <my fixed files>
git commit --fixup=OLDCOMMIT
git rebase --interactive --autosquash OLDCOMMIT^
Helpful Hippopotamus

Git Commit --mend con ID de commit

git commit --amend -m "new commit message"
$ git push --force-with-lease branch-name
Defeated Dormouse

Enmendar la confirmación específica

git rebase -i @~9   # Show the last 9 commits in a text editor
# Here you can change the one you want to change from `pick` to `e` or `edit`
# After that you can either ammend it to change the message:
git commit --amend # or you can reset the changes and commit it again: `git reset @~`
# When all the changes are made, rebase it
git rebase --continue
Fusinato

Respuestas similares a “Enmendar la confirmación específica”

Preguntas similares a “Enmendar la confirmación específica”

Más respuestas relacionadas con “Enmendar la confirmación específica” en Shell/Bash

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código