Answers for "git edit commit old message"

58

change git commit message

git commit --amend -m "New commit message"
Posted by: Guest on March-11-2020
5

github change last commit message

# for the most recent commit
git commit --amend -m "changed commits"
git push -f
# for n older commits
git rebase -i HEAD~n
# use r for reword to edit older commits
# removing a line means THAT COMMIT WILL BE LOST. 
git rebase --continue
# solve conflicts if exist
git push -f
# git push --force-with-lease origin <branch> is safer
Posted by: Guest on November-08-2021

Code answers related to "git edit commit old message"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language