I have a project with git, and I just want to clone or pull a specific directory, like myproject/javascript just like subversion does.
make some changes, commit and push back again.
It's possible?
|
|
|||||||||
|
|
It's not possible. You need pull all repository or nothing. |
|||||||||||
|
|
Maybe this command can be helpful :
"Et voilĂ " |
||||
|
|
|
I see. I'll try creating submodules and see if works for me. I'll report results. EDIT: sparse checkout and submodules worked out for me. The links I've used to read about (given by VonC and Michel Jansen) are: How to git-pull all but one folder http://www.kernel.org/pub/software/scm/git/docs/git-read-tree.html#_sparse_checkout http://vmiklos.hu/blog/sparse-checkout-example-in-git-1-7 http://www.kernel.org/pub/software/scm/git/docs/git-read-tree.html#_sparse_checkout |
||||
|
|
|
Shingara is right. An explanation of this behaviour is given in this mailing list thread. If you really want to do this, you can make the javascript dir a submodule. |
|||
|
|
|
Sometimes, you just want to have a look at previous copies of files without the rigmarole of going through the diffs. In such a case, it's just as easy to make a clone of a repository and checkout the specific commit that you are interested in and have a look at the subdirectory in that cloned repository. Because everything is local you can just delete this clone when you are done. |
|||
|
|