개발관련/Git

Git에서 이전 (마지막이 아님) 커밋에 변경된 파일을 추가하는 방법

Rateye 2021. 7. 19. 10:12
728x90
반응형

 

질문 : Git에서 이전 (마지막이 아님) 커밋에 변경된 파일을 추가하는 방법

지난 한 시간 동안 몇 가지 사항을 변경하고 단계적으로 커밋했지만 일부 커밋 전에 변경된 파일을 추가하는 것을 잊었다는 것을 깨달았습니다.

로그는 다음과 같습니다.

GIT TidyUpRequests u:1 d:0> git log 
commit fc6734b6351f6c36a587dba6dbd9d5efa30c09ce 
Author: David Klein <> 
Date:   Tue Apr 27 09:43:55 2010 +0200

    The Main program now tests both Webservices at once

commit 8a2c6014c2b035e37aebd310a6393a1ecb39f463 
Author: David Klein <>
Date:   Tue Apr 27 09:43:27 2010 +0200

    ISBNDBQueryHandler now uses the XPath functions from XPath.fs too

commit 06a504e277fd98d97eed4dad22dfa5933d81451f 
Author: David Klein <> 
Date:   Tue Apr 27 09:30:34 2010 +0200

    AmazonQueryHandler now uses the XPath Helper functions defined in XPath.fs

commit a0865e28be35a3011d0b6091819ec32922dd2dd8 <--- changed file should go here
Author: David Klein <> 
Date:   Tue Apr 27 09:29:53 2010 +0200

    Factored out some common XPath Operations

어떤 아이디어?

답변

git rebase 사용하십시오. 구체적으로 특별히:

[^ vimnote] : vim

사용하는 경우 편집하려면 Insert

키를 누른 다음

Esc를

누르고 :wq 를 입력하여 파일을 저장하고 편집기를 종료 한 다음 변경 사항을 적용해야합니다. git config --global core.editor "nano" 사용하여 사용자 친화적 인 git 커밋 편집기 를 구성 할 수 있습니다.

출처 : https://stackoverflow.com/questions/2719579/how-to-add-a-changed-file-to-an-older-not-last-commit-in-git
728x90
반응형