Using IntelliJ to amend git commit message

余生长醉 提交于 2019-11-27 11:24:12

View => Tool Windows => Version Control. (Windows (Alt + 9) / OS X (Cmd + 9))

IntelliJ 2017.1 and higher => Go to Log and right click + reword or press F2.

While you are on the same branch, ( your checked out branch is the same )

Amend is supported: invoke "Commit Changes" and select the checkbox "Amend commit" in the Commit Dialog. Then press "Commit" button, and the commit will be amended to the previous one.

However, the support is limited:

  • you can't see the details of the commit being amended,
  • if you don't have any uncommitted changes (for example, you just want to change the message of the previous commit without adding more changes to it), you won't be able to invoke "Commit".
Ashish Rawat

Finally found a workaround for this.. This issue was troubling me for days.

  1. Go to Version Control -Log tab
  2. Select the version, one below your changes. Right click and say "reset current branch to here"
  3. Select "Soft" and click on Reset, this is very important, you need to click on soft only so that your changes are not lost.
  4. Check in version control , local changes, your changes will be avialable in same changelist
  5. Right click on the change list and select commit.
  6. It will show you your previous commit message, now you can amend the comments and say commit and push

    Note: This solution uses android studio as intellij platform. 
    

You can also go to your git folder with a terminal and shell like powershell, cmd or bash (depends on your system), and then type:

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

Commit messages can be edited during a rebase. Invoke the Rebase command from the VCS menu, confirm the branch settings, then click the Rebase button. You'll be presented with a list of your unpushed commits. Choose the reword action from the drop-down to the left of the message you want to edit.

Check the git doc on Rewriting History for details on other rebase actions.

In the Log tab, select the commit and press F2 (Reword). Thats it.

To be fair, the quickest way to do this is via the command line. I know the OP was asking about doing it via IntelliJ (Its how I found this question, I was trying to do it in PHPStorm), but seriously, its so much easier via the command line.

When in the correct folder in your terminal / command prompt type

git commit --amend

You'll then be shown the last commit message, simply edit the text and save the file, job done!

If you want to change the editor (it defaults to vi), then use this command, changing "vim" to your editor of choice.

git config --global core.editor "vim"

i.e. windows users may want to...

git config --global core.editor "notepad"

Source: https://help.github.com/articles/changing-a-commit-message/

redhot

In case, 2018.3 and same with 2017.1

Alt + 9 (version control window)

And right click -> context menu click "Reword... F2 "

OR

shorcut F2 You can edit message.

In JetBrains Go to View -> Version Control -> This would open the version control log tab to the bottom of the screen Go to Log and you can see the commit that you did last Right click on it, and select undo commit

Bingo! You have reverted all your commit and the message is erased. You can also choose to do soft reset in case you only want to change the commit mesage

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!