“modifier un engagement spécifique” Réponses codées

des modifications ajoutées à un engagement spécifique

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

git commit --And with commit id

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

modifier un engagement spécifique

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

Réponses similaires à “modifier un engagement spécifique”

Questions similaires à “modifier un engagement spécifique”

Plus de réponses similaires à “modifier un engagement spécifique” dans Shell/Bash

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code