Is it possible to open a file in a git branch with out checking out that branch? If show how?

Essentially I want to be able to open a file in my github pages branch without switching branches all the time. I don't want to modify it, just want to view it. Any thoughts?

link|improve this question

4  
All the answers missed the fact you need to specify the full path of the file with git show: stackoverflow.com/questions/610208/… and stackoverflow.com/questions/2364147/… – VonC Oct 21 '11 at 23:53
feedback

3 Answers

up vote 13 down vote accepted

This should work:

git show branch:file

Where branch can be any ref (branch, tag, HEAD, ...) and file is the full path of the file. To export it you could use

git show branch:file > exported_file

You should also look at VonC's answers to some related questions:

link|improve this answer
You are a wizard!! Thanks! – Schneems Oct 21 '11 at 23:49
feedback
git show somebranch:path/to/your/file

you can also do multiple files and have them concatenated:

git show branchA~10:fileA branchB^^:fileB

You have to provide the full path to the file.

If you want to get the file in the local directory (revert just one file) you can checkout:

git checkout somebranch^^^ -- path/to/file
link|improve this answer
feedback

A simple, newbie friendly way for looking into a file: git gui browser <branch> which lets you explore the contents of any file.

It's also there in the File menu of git gui. Most other -more advanced- GUI wrappers (Qgit, Egit, etc..) offer browsing/opening files as well.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.