본문 바로가기

WIL(What I Learned)

Push 전 Commit 메시지 변경하기

Commit has not been pushed online

If the commit only exists in your local repository and has not been pushed to GitHub.com, you can amend the commit message with the git commit --amend command.

  1. On the command line, navigate to the repository that contains the commit you want to amend.
  2. Type git commit --amend and press Enter.
  3. In your text editor, edit the commit message, and save the commit.

https://docs.github.com/en/pull-requests/committing-changes-to-your-project/creating-and-editing-commits/changing-a-commit-message

 

Changing a commit message - GitHub Docs

Rewriting the most recent commit message You can change the most recent commit message using the git commit --amend command. In Git, the text of the commit message is part of the commit. Changing the commit message will change the commit ID--i.e., the SHA1

docs.github.com

 

이후 Vim Editor에서 쓰이게 될 명령어:

https://stevenpcurtis.medium.com/using-vim-as-a-text-editing-tool-on-the-mac-9595c1122e91

 

Using VIM as a text editing tool on the Mac

The bluffers guide

stevenpcurtis.medium.com

(insert mode에서 normal mode로 변경하고 싶으면 esc 누르면 된다.)

'WIL(What I Learned)' 카테고리의 다른 글

21.12.4 토  (0) 2021.12.04
Java Enhanced For Loop(자바 향상된 반복문)  (0) 2021.12.02
21.11.29 月  (0) 2021.11.30
21.11.26 金  (0) 2021.11.26
21.11.22 月  (0) 2021.11.22