1745

I have made a git commit and subsequent push. I would like to change the commit message. If I understand correctly, this is not advisable because someone might have pulled from the remote repository before I make such changes. What if I know that no one has pulled?

Is there a way to do this?

k0pernikus
67.6k78 gold badges245 silver badges366 bronze badges
asked Jan 24, 2012 at 1:58
7
  • What have you tried? Assuming you know how to change the commit message already, and then try and push, Git will tell you what you need to do to make it happen. Commented Jan 24, 2012 at 1:59
  • 3
    See answer to question "How do I edit an incorrect commit message in git (I've pushed)?" stackoverflow.com/a/457396/444639 Commented Mar 14, 2013 at 15:08
  • 3
    help.github.com/articles/changing-a-commit-message Commented May 17, 2016 at 10:47
  • If you amend the HEAD commit and push usually (without --force) then surprisingly it does not fail. HEAD commit message is updated with the changed commit Id. It means other commit IDs except HEAD remains intact. I noticed this behavior with git 2.8.1 version. Commented Sep 13, 2017 at 9:00
  • Simple and easy for all commits, not only most recent: stackoverflow.com/a/5032614/7705712 Commented Feb 25, 2019 at 6:02

21 Answers 21

2115

Changing history

If it is the most recent commit, you can simply do this:

git commit --amend

This brings up the editor with the last commit message and lets you edit the message. (You can use -m if you want to wipe out the old message and use a new one.)

Pushing

And then when you push, do this:

git push --force-with-lease <repository> <branch>

Or you can use "+":

git push <repository> +<branch>

Or you can use --force:

git push --force <repository> <branch>

Be careful when using these commands.

  • If someone else pushed changes to the same branch, you probably want to avoid destroying those changes. The --force-with-lease option is the safest, because it will abort if there are any upstream changes (

  • If you don't specify the branch explicitly, Git will use the default push settings. If your default push setting is "matching", then you may destroy changes on several branches at the same time.

Pulling / fetching afterwards

Anyone who already pulled will now get an error message, and they will need to update (assuming they aren't making any changes themselves) by doing something like this:

git fetch origin
git reset --hard origin/master # Loses local commits

Be careful when using reset --hard. If you have changes to the branch, those changes will be destroyed.

A note about modifying history

The destroyed data is really just the old commit message, but --force doesn't know that, and will happily delete other data too. So think of --force as "I want to destroy data, and I know for sure what data is being destroyed." But when the destroyed data is committed, you can often recover old commits from the reflog—the data is actually orphaned instead of destroyed (although orphaned commits are periodically deleted).

If you don't think you're destroying data, then stay away from --force... bad things might happen.

This is why --force-with-lease is somewhat safer.

answered Jan 24, 2012 at 2:02
Sign up to request clarification or add additional context in comments.

20 Comments

Be careful with that "fix", as if they have any local, unpushed commits they will be "lost" (lost truly meaning orphaned, but recovering them is non-obvious).
you probably want to specify the branch name when you push --force, otherwise you may push more than you expected.
Simply git push --force without <repository> and <branch> options works too, if you have your upstream set up.
Can you give an example of <repository>? Is it origin? org/repo? Or just repo?
@MikeSchinkel: It is the remote name, for example, origin.
|
823

Just say:

git commit --amend -m "New commit message"

and then

git push --force
Uwe Keim
40.9k61 gold badges193 silver badges308 bronze badges
answered Dec 31, 2013 at 6:45

11 Comments

It doesn't work because - as the QUESTION says - the commit is already PUSHED. Amend works for un-pushed commits.
After trying this, I get this error: remote: To prevent you from losing history, non-fast-forward updates were rejected. remote: Merge the remote changes (e.g. 'git pull') before pushing again. See the 'Note remote: about fast-forwards' section of 'git push --help' for details. ` [remote rejected] master -> master (pre-receive hook declined)`
I successfully applied these command only after temporarily "unprotect" my branch, which happened on my GitLab-hosted project. If you have this issue, before applying these commands, please refer to this stackoverflow.com/a/32267118/1423345 to "unprotect" the branch, and you can "protect" it again after done amending the commit message :)
works fine for me. 1. git commit --amend -m "New commit message" 2. git push --force remoteName branchName in my case remoteName is origin
worked fine for me
|
704

To edit a commit other than the most recent:

Step1: git rebase -i HEAD~n to do interactive rebase for the last n commits affected. (i.e. if you want to change a commit message 3 commits back, do git rebase -i HEAD~3)

git will pop up an editor to handle those commits, notice this command:

# r, reword = use commit, but edit the commit message

that is exactly we need!

Step2: Change pick to r for those commits that you want to update the message. Don't bother changing the commit message here, it will be ignored. You'll do that on the next step. Save and close the editor.

Note that if you edit your rebase 'plan' yet it doesn't begin the process of letting you rename the files, run:

git rebase --continue

If you want to change the text editor used for the interactive session (e.g. from the default vi to nano), run:

GIT_EDITOR=nano git rebase -i HEAD~n

Step3: Git will pop up another editor for every revision you put r before. Update the commit msg as you like, then save and close the editor.

Step4: After all commits msgs are updated. you might want to do git push -f to update the remote.

Notts90
2552 silver badges20 bronze badges
answered Feb 1, 2017 at 19:17

12 Comments

This should be accepted answer as it gives possibility to change other commits than most recent commit, unlike accepted answer. You saved my day. Thank you!
Choose n=3 for the last 3 commits: git rebase -i HEAD~3
If you edit your rebase 'plan' yet it doesn't begin the process of letting you rename the files, run git rebase --continue. And if you want to change the text editor used for the interactive session (e.g. from the default vi to nano), run GIT_EDITOR=nano git rebase -i HEAD~n.
I edited this to add a little more info. Please take a look. This was the answer for what I wanted to do, but I scrolled by it because it didn't have the header.
This created additional commit with the corrected commit message.
|
93

Use these two steps in console:

git commit --amend -m "new commit message"

and then

git push -f

Done :)

nCardot
6,6118 gold badges57 silver badges100 bronze badges
answered Jun 19, 2017 at 9:48

3 Comments

This was a very straightforward answer with the least amount of steps to remember and do.
How is this different from earlier answers like this one?
There are more than half a dozen later duplicate answers like this @DanDascalescu. Apart from the fact that they are all posted years after the accepted answer the main difference is that they don't provide the warnings and background diligence that the accepted answer does. Otherwise they're pretty much the same: just duplicates. I don't understand why people post what is basically spam. I guess they just want to get their names in print?
55

Case 1 : Not pushed + most recent commit:

 git commit --amend

This will open your $EDITOR and let you change the message. Continue with your usual git push origin master.

Case 2 : Already pushed + most recent commit:

 git commit --amend
 git push origin master --force

We edit the message like just above. But need to --force the push to update the remote history.

⚠️ But! Force pushing your commit after changing it will very likely prevent others to sync with the repo, if they already pulled a copy. You should first check with them.

Case 3 : Not pushed + old commit:

 git rebase -i HEAD~X
 # X is the number of commits to go back
 # Move to the line of your commit, change pick into reword,
 # then change your commit message:
 git commit --amend
 # Finish the rebase with:
 git rebase --continue

Rebase opens your history and let you pick what to change. With edit you tell you want to change the message. Git moves you to a new branch to let you --amend the message. git rebase --continue puts you back in your previous branch with the message changed.

Case 4 : Already pushed + old commit:

Edit your message with the same 3 steps process as above (rebase -i, commit --amend, rebase --continue). Then force push the commit:

 git push origin master --force

⚠️ But! Remember re-pushing your commit after changing it will very likely prevent others to sync with the repo, if they already pulled a copy. You should first check with them.

Reference : https://gist.github.com/nepsilon/156387acf9e1e72d48fa35c4fabef0b4#not-pushed--most-recent-commit

Gangula
7,7785 gold badges53 silver badges95 bronze badges
answered Sep 18, 2022 at 5:22

3 Comments

Those are helpful and all, but part of good Stackoverflow-etiquette is having the answers on this page in case the links ever go down.
Made the changes , got the data from 3P site to stackoverflow.
Important note for anyone new to Git: you may or may not be git pushing to the destination origin master, and you may not need to specify a destination at all. Generally, you'll be pushing to origin unless you have more than one remote, but the second part is the name of your branch. If you're on branch master, then yes, it's master, but otherwise it might be something else. For many people, git push will already be configured, too.
23

It should be noted that if you use push --force with mutiple refs, they will ALL be modified as a result. Make sure to pay attention to where your git repo is configured to push to. Fortunately there is a way to safeguard the process slightly, by specifying a single branch to update. Read from the git man pages:

Note that --force applies to all the refs that are pushed, hence using it with push.default set to matching or with multiple push destinations configured with remote.*.push may overwrite refs other than the current branch (including local refs that are strictly behind their remote counterpart). To force a push to only one branch, use a + in front of the refspec to push (e.g git push origin +master to force a push to the master branch).

answered Mar 23, 2014 at 23:47

2 Comments

Very important note.
none of the force answers work for me, because I don't have ForcePush permissions on the server. Instead, I want to perform a commit which changes a previous commit message. I could write "commit message changed" to that commit's comment section.
17

Command 1.

git commit --amend -m "New and correct message"

Then,

Command 2.

git push origin --force
pRaNaY
25.4k25 gold badges98 silver badges149 bronze badges
answered Apr 18, 2017 at 3:52

Comments

16
git commit --amend

then edit and change the message in the current window. After that do

git push --force-with-lease
answered Jan 5, 2018 at 6:09

1 Comment

haven't seen this one: roll eyes
15

Instead of rebasing and force pushing the modified branch, it's possible to replace a commit with a different message without affecting the existing commit hashes:

git replace --edit <commit>

The modified references will then have to be pushed and fetched explicitly with:

git push origin 'refs/replace/*'
git fetch origin 'refs/replace/*:refs/replace/*'

This requires Git 2.1 or higher.

https://git-scm.com/docs/git-replace

git log and tig show the modified commit, but GitHub and GitLab don't, so the usefulness of this feature is still limited.

answered Oct 25, 2023 at 8:01

4 Comments

I tried this but I don't see the changes on the remote. I wonder if this answer is missing a step, or making an assumption?
@MichaelEaster Are you sure the refs/replace references were pushed and fetched? Also note that GitHub doesn't support this yet, the commit history still shows the old commit. But git log and tig show the modified commit.
You might want to mention that this doesn't work for GitHub yet in your answer, as that might be a dealbreaker for a lot of people.
cheers, this is a blow your repo delete and start again typo of solution ;0)
13

To make sure you are making changes on the right branch

git checkout 

#to make sure you are making changes on the right branch just to be sure:

git checkout branchname

Then

git commit --amend -m "new message"

Then push

git push --force
answered Aug 4, 2021 at 20:41

Comments

13

Working

We have git amend command using which we can update commit message alone or along with additional files which will be part of last commit so we have to use

git commit --amend -m "New commit message"

and then push with force so that even though commited to local or remote it will update both

git push --force
answered Mar 6, 2024 at 9:54

1 Comment

This is what worked for me. Cleanest answer imo
12

If you want to modify an older commit, not the last one, you will need to use rebase command as explained in here,Github help page , on the Amending the message of older or multiple commit messages section

answered Oct 28, 2016 at 10:43

Comments

10

Another option is to create an additional "errata commit" (and push) which references the commit object that contains the error -- the new errata commit also provides the correction. An errata commit is a commit with no substantive code changes but an important commit message -- for example, add one space character to your readme file and commit that change with the important commit message, or use the git option --allow-empty. It's certainly easier and safer than rebasing, it doesn't modify true history, and it keeps the branch tree clean (using amend is also a good choice if you are correcting the most recent commit, but an errata commit may be a good choice for older commits). This type of thing so rarely happens that simply documenting the mistake is good enough. In the future, if you need to search through a git log for a feature keyword, the original (erroneous) commit may not appear because the wrong keyword was used in that original commit (the original typo) -- however, the keyword will appear in the errata commit which will then point you to the original commit that had the typo. Here's an example:

$ git log
commit 0c28141c68adae276840f17ccd4766542c33cf1d
Author: First Last 
Date: Wed Aug 8 15:55:52 2018 -0600
 Errata commit:
 This commit has no substantive code change.
 This commit is provided only to document a correction to a previous commit message.
 This pertains to commit object e083a7abd8deb5776cb304fa13731a4182a24be1
 Original incorrect commit message:
 Changed background color to red
 Correction (*change highlighted*):
 Changed background color to *blue*
commit 032d0ff0601bff79bdef3c6f0a02ebfa061c4ad4
Author: First Last 
Date: Wed Aug 8 15:43:16 2018 -0600
 Some interim commit message
commit e083a7abd8deb5776cb304fa13731a4182a24be1
Author: First Last 
Date: Wed Aug 8 13:31:32 2018 -0600
 Changed background color to red
answered Aug 8, 2018 at 22:18

6 Comments

rob, this looks promising. can you show the commands needed to do an "errata commit". only this post shows up in google on these terms.
An "errata commit" is simply a normal commit with a message that references the previous erroneous commit, documenting and providing a correction for the previous mistake. git commit -m "fixed feature A" (Let’s assume git gives this a commit ID of e3ab7312... ... (later you realize your message was incorrect so now make an inconsequential change to a file like adding a space to the readme file, or use the —allow-empty git option) ... git commit -m "Errata commit for previous commit e3ab7312... original message should have been ‘fixed feature *B*’ ‘’’
...if you later need to search the git log for references to "feature B", the errata commit will show up, but the errata commit message contains a reference to the original commit ID which provides full traceability. BTW the term "errata commit" is nothing special (there is no "errata" command nor option in git)...it is just my terminology for a normal commit that provides a correction to a previous commit that had an error/typo.
rob, that worked great. I was able to add a new empty commit with the correct description, that points to the original commit, by using the SHA. now, both are shown in my 'git chain' for the modules. thanks!
I'm glad that worked for you. I use the same technique to correct mistakes in commit messages. As an alternative, I just recently discovered git notes This would serve the same purpose as an "errata commit". Simply add a note to a previous commit to annotate or correct any errors in the commit message: https://git-scm.com/docs/git-notes
|
9

FWIW in the simplest case, the checked answer is correct. I just wanted to share a recent experience.

This worked.

git commit --amend -m"The new message here"

git push --force origin

And the tester was able to checkout the branch for the first time and has only the amended message.

So in the simplest case (single developer and/or known that no one has fetch/pulled or checked out the branch) that is sufficient.

answered Feb 9, 2023 at 16:48

Comments

8

Simply use this 2 commands to change the commit message of your last push

  1. -$ git commit --amend -m "New commit message."
  2. -$ git push --force-with-lease
answered May 13, 2022 at 11:14

2 Comments

How is this different from much earlier answers like this one?
4
  • Command 1

    You need to change your commit message use the Below command

    git commit --amend -m "New and correct message"
    
  • Command 2

    After the add a new message and then below command execute

    git push -f origin <your_branch_name>
    
Syscall
19.8k10 gold badges44 silver badges60 bronze badges
answered Mar 30, 2021 at 5:33

Comments

4

Event if you commit worng message with -S parameter following would work:

 git checkout branch
 git commit --amend -m "Your new message"

at this point do not forget that you added a change and your remote is different, this why you need to do:

 git push --force

If you are in VSCode you will see the difference, with --force parameter you ignore git pull and you push your changed message to the same commit.

answered Nov 10, 2022 at 10:13

Comments

1

I'm a little bit new to Git, but I just wanna add my experience.

git commit --amend -m "New and correct message"

This worked great but the next was the problem for me. I already pushed the commit before changing the commit message. Finally, when I tried to push to the remote, it git threw an exception. So I should have pull down again before updating the remote branch.

git pull origin branch-name

git push origin branch-name

Hope my minor experience helps you. Thanks.

answered Jun 14, 2021 at 15:32

1 Comment

That's not a great solution, because now you're going to have that commit twice, once with the old message, once with the corrected message, merged together.
0

additional information for same problem if you are using bitbucket pipeline

edit your message

git commit --amend

push to the sever

git push --force <repository> <branch>

then add --force to your push command on the pipeline

git ftp push --force

This will delete your previous commit(s) and push your current one.

remove the --force after first push

i tried it on bitbucket pipeline and its working fine

answered Sep 5, 2018 at 9:26

Comments

0

I did my first attempt at renaming about 6 old commit messages that were already pushed and I had since done further commits.

So it's the nastiest case 'Case 4 : Already pushed + old commit'.

I'm a Vim (Nvim now) user and a mega fan of Vim's Fugitive. So this is how I did it with that.

This is the general help that you have around rebasing in Fugitive:

Rebase maps ~
ri Perform an interactive rebase. Uses ancestor of
u commit under cursor as upstream if available.
rf Perform an autosquash rebase without editing the todo
 list. Uses ancestor of commit under cursor as
 upstream if available.
ru Perform an interactive rebase against @{upstream}.
rp Perform an interactive rebase against @{push}.
rr Continue the current rebase.
rs Skip the current commit and continue the current
 rebase.
ra Abort the current rebase.
re Edit the current rebase todo list.
rw Perform an interactive rebase with the commit under
 the cursor set to `reword`.
rm Perform an interactive rebase with the commit under
 the cursor set to `edit`.
rd Perform an interactive rebase with the commit under
 the cursor set to `drop`.
r<Space> Populate command line with ":Git rebase ".
r? Show this help.
  1. Get a list of commits.

    :Git log --oneline enter image description here

  2. I want to fix the commit message on line 12 (4d43a1b build(MPL-402): editorconfig fix for messges.json), because its not in the proper Conventional Commit format.

  3. I put my cursor over the commit hash 4d43a1b and type rw

    This will "Perform an interactive rebase with the commit under the cursor set to reword.". Note how nice this is compared to git rebase -i HEAD~X - knowing what that X is is not so simple. enter image description here

  4. This should now give you the correct git rebase command. So write and quit that buffer with :wq

  5. Then follow the steps through as git/fugitive guides you. I got a merge conflict for one of my commits which I fixed through my normal fugitve merge conflict process.

Hopefully that's enough to get you over the first "I've never done a rebase before, what the hell am I supposed to do?" hurdle. Leave me a comment if you want help with the later steps.

answered Nov 17, 2022 at 11:25

Comments

-1

This works for me pretty fine,

git checkout origin/branchname

if you're already in branch then it's better to do pull or rebase

git pull

or

git -c core.quotepath=false fetch origin --progress --prune

Later you can simply use

git commit --amend -m "Your message here"

or if you like to open text-editor then use

git commit --amend

I will prefer using text-editor if you have many comments. You can set your preferred text-editor with command

git config --global core.editor your_preffered_editor_here

Anyway, when your are done changing the commit message, save it and exit

and then run

git push --force

And you're done

answered May 12, 2017 at 13:51

1 Comment

Interesting idea to modify a configuration setting - but what am I actually changing, and why are you recommending it? Without that, yours is merely an answer given years later.

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.