Is it possible to open a file in a git branch without checking out that branch? 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.
|
Is it possible to open a file in a git branch without checking out that branch? 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. |
||||
|
This should work:
Where branch can be any ref (branch, tag, HEAD, ...) and file is the full path of the file. To export it you could use
You should also look at VonC's answers to some related questions: |
||||
|
|
you can also do multiple files and have them concatenated:
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:
|
||||
|
|
|
A simple, newbie friendly way for looking into a file:
It's also there in the File menu of |
||||
|
|
|
If you're using Emacs, you can type |
|||
|
|
git show: stackoverflow.com/questions/610208/… and stackoverflow.com/questions/2364147/… – VonC Oct 21 '11 at 23:53