简体   繁体   中英

git checkout revision of a file in git gui

Is there a good way to checkout revisions of a specific file in git gui like an add tool or something?

Tried adding a new tool as:

git checkout $REVISION $FILENAME 

But it only allows branch revisions out, not a specific commit. Is there a particular var I coud use to do that?

You could try:

 $ git show $REVISION:$FILENAME

with a ':' syntax as described in git rev-parse .
That would be if you can specify for $FILENAME the full path relative to the top directory of your project (the directory including the .git directory).

This should be equivalent to:

 $ git checkout $REVISION -- $FILENAME

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM