Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Git] 이전 커밋에 파일을 추가하고 싶다면? #4

Open
hoo00nn opened this issue Sep 3, 2021 · 0 comments
Open

[Git] 이전 커밋에 파일을 추가하고 싶다면? #4

hoo00nn opened this issue Sep 3, 2021 · 0 comments
Assignees

Comments

@hoo00nn
Copy link
Contributor

hoo00nn commented Sep 3, 2021

문제발생

  • A기능을 구현하기위해 3개의 파일을 수정 ( A1.ts, A2.ts, A3.ts )
  • A기능의 대한 커밋을 작성 (깜박하고 A3.ts는 포함시키지 않음)

해결방법

git add {추가할 파일명}
git commit --amend

git commit --amend --no-edit 명령어는 커밋 메시지를 변경하고 싶지 않은 경우 사용할 수 있다.

심화 (이전 커밋이 아닌 특정 커밋이라면?)

  • git rebase -i {커밋의 해쉬값} 명령어 이용
  • 해당 커밋을 pick -> edit으로 변경 후 나오게 되면 해당 커밋으로 checkout됨
  • 이 상태에서 git commit --amend 명령어 이용하여 수정가능
@hoo00nn hoo00nn self-assigned this Sep 3, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant