Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm new to git so this may be a silly question:

how do i checkout just one file from a git repo?

share|improve this question
What do you mean by check out? Obtain a copy of only one file from a remote repository? – Jefromi Mar 17 '10 at 23:59
have only one file from the repo in the current directory. – Arthur Ulfeldt Mar 18 '10 at 0:02
1  
If the repo in question is using gitweb you could just download the file directly from there. As I'm trying to explain below, what you're asking isn't really a standard git operation. – Jefromi Mar 18 '10 at 0:08
possible duplicate of How do I revert one file to the last commit in git? – nawfal Feb 24 at 20:50

8 Answers

up vote 16 down vote accepted

As mentioned in the other answers:

  • you must clone first the repo, meaning you get the full history:

    • in the .git repo
    • in the working tree.
  • But then you can do a sparse checkout (if you are using Git1.7+),:

    • enable the sparse checkout option (git config core.sparsecheckout true)
    • adding what you want to see in the .git/info/sparse-checkout file
    • re-reading the working tree to only display what you need

To re-read the working tree:

$ git read-tree -m -u HEAD

That way, you end up with a working tree including precisely what you want (even if it is only one file)

share|improve this answer
can you commit the changes in the sparse checkout? – Tilo Jan 11 '12 at 6:10
1  
@Tilo: not sure, but it should be possible, considering the clone has been a full one. – VonC Jan 11 '12 at 7:02
1  
How's this better than "git checkout HASH path-to-file" as noted in other answers? was that just not available at the time? – thatjuan Aug 30 '12 at 17:47
@juand the idea was to not have to load the all working tree before doing git checkout. – VonC Aug 30 '12 at 18:04
@VonC ah, that makes sense.. thanks! – thatjuan Sep 8 '12 at 5:31

First clone the repo with the -n option, which suppresses the default checkout of all files, and the --depth 1 option, which means it only gets the most recent revision of each file

git clone -n git://path/to/the_repo.git --depth 1

Then check out just the file you want like so:

cd the_repo
git checkout HEAD name_of_file
share|improve this answer
While literally this does check out a single file, it's almost certainly not what the OP wants to do, since they will have all of the files (and the checkout is a no-op anyway). – Jefromi Mar 17 '10 at 23:58
Noted, and updated. – Nick Moore Mar 18 '10 at 0:01
1  
I don't think this even works - with -n the work tree and index end up in sync. That is, all content shows up as deleted. You have to either git reset HEAD or git checkout HEAD file. It's also really difficult to work with the repository at this point unless you really understand how git works. – Jefromi Mar 18 '10 at 0:06
Yes, you are quite right. I gave the answer before I tried it myself. I was going to delete it, but with your useful additions I shall leave it now. – Nick Moore Mar 18 '10 at 0:14
3  
If it’s a one-time-only operation, you can say --depth 1 in your clone call. – Debilski Mar 18 '10 at 0:15
show 3 more comments

If you already have a copy of the git repo, you can always checkout a version of a file using a git log to find out the hash-id (for example 3cdc61015724f9965575ba954c8cd4232c8b42e4) and then you simply type:

git checkout hash-id path-to-file

Here is an actual example:

git checkout 3cdc61015724f9965575ba954c8cd4232c8b42e4 /var/www/css/page.css
share|improve this answer

Working in GIT 1.7.2.2

For example you have a remote some_remote with branches branch1, branch32

so to checkout a specific file you call this commands:

git checkout remote/branch path/to/file

as an example it will be something like this

git checkout some_remote/branch32 conf/en/myscript.conf
git checkout some_remote/branch1 conf/fr/load.wav

This checkout command will copy the whole file structure conf/en and conf/fr into the current directory where you call these commands (of course I assume you ran git init at some point before)

share|improve this answer
But you need to run git fetch some_remote before, don't you? – phihag Jan 31 at 20:47

If this file is on github.com, try i.e.:

wget https://raw.github.com/rupa/YOU_ARE_DEAD/master/README
share|improve this answer

It sounds like you're trying to carry over an idea from centralized version control, which git by nature is not - it's distributed. If you want to work with a git repository, you clone it. You then have all of the contents of the work tree, and all of the history (well, at least everything leading up to the tip of the current branch), not just a single file or a snapshot from a single commit.

 git clone /path/to/repo
 git clone git://url/of/repo
 git clone http://url/of/repo
share|improve this answer

In git you do not 'checkout' files before you update them - it seems like this is what you are after.

Many systems like clearcase, csv and so on require you to 'checkout' a file before you can make changes to it. Git does not require this. You clone a repository and then make changes in your local copy of repository.

Once you updated files you can do:

git status

To see what files have been modified. You add the ones you want to commit to index first with (index is like a list to be checked in):

git add .

or

git add blah.c

Then do git status will show you which files were modified and which are in index ready to be commited or checked in.

To commit files to your copy of repository do:

git commit -a -m "commit message here"

See git website for links to manuals and guides.

share|improve this answer
And if your goal is to patch this single file and submit it back, you'll need to either push (but probably you don't have push access for this project?) or use git format-patch to create a patch for submission (git format-patch -1 will create a patch for just your most recent commit). – Jefromi Mar 18 '10 at 0:58

git checkout branch_or_version -- path/file

example: git checkout HEAD -- main.c

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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