Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 자료구조
- MySQL
- 게임
- class
- flask
- nestjs
- MongoDB
- nodejs
- OCR
- cookie
- game
- AWS
- react
- Nest.js
- Express
- Bull
- Sequelize
- GIT
- typeORM
- dfs
- Dinosaur
- jest
- JavaScript
- 공룡게임
- mongoose
- 정렬
- Queue
- TypeScript
- Python
Archives
- Today
- Total
포시코딩
[Git] 최근 작성한 커밋 메시지 변경하기 (push 하기 전) 본문
728x90
git commit --amend
위 명령어를 통해 가장 최근 Git 커밋 메시지를 변경할 수 있다.
실행 시 편집기가 열리고 작성 후 저장하면 변경된다.
git commit --amend -m "an updated commit message"
이렇게 `-m` 옵션을 통해 편집기를 열지 않고도 변경할 수 있다.
참고
https://www.atlassian.com/ko/git/tutorials/rewriting-history
728x90
'Git' 카테고리의 다른 글
SVN에서 Git으로 Migration하고 Git Server 등록까지 (0) | 2023.02.05 |
---|---|
git stash - 진행상황 임시저장 (0) | 2023.01.02 |
게임처럼 Git 배우기 (0) | 2022.12.12 |
Cherry-pick - 다른 브랜치에서 커밋 가져오기 (0) | 2022.11.27 |
Git Upgrade - Mac(맥), Homebrew (0) | 2022.07.18 |