“Änderung spezifischer Commit” Code-Antworten

Änderungen zu einem bestimmten Commit hinzugefügt

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

Git Commit -Amend mit Commit ID

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

Änderung spezifischer Commit

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

Ähnliche Antworten wie “Änderung spezifischer Commit”

Fragen ähnlich wie “Änderung spezifischer Commit”

Weitere verwandte Antworten zu “Änderung spezifischer Commit” auf Shell/Bash

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen