편하게 살자

git 과거 리비젼 파일 가져오기

mulderu 2016. 6. 3. 14:21


revision id : db2e84d0 당시의 파일가져오기


git show db2e84d0:trunk/aaaa/bbb/cccc/common.js



REF: http://stackoverflow.com/questions/338436/is-there-a-quick-git-command-to-see-an-old-version-of-a-file

You can use git show:

$ git show REVISION:path/to/file

For example, to show the 4th last commit of the file src/main.c, use:

$ git show HEAD~4:src/main.c