Cloning only a subdirectory with Git

83k Views Asked by At

I have a Git repository that includes subdirectories. Example dirA/dirB.

Is there a way to do a git clone on a Unix server to pull only files from a subdirectory (dirB)?

Is there some other Git command other than clone that will do this?

How do I Git a specific file?

6

There are 6 best solutions below

4
On BEST ANSWER

If you want to clone only parts of your repository, you should look at git submodules.

The subdirectory is managed by a specific git repository and is referenced in the main repository as a submodule.

When you clone the main repository, the submodules are not automatically cloned.

0
On

I would like to share a workaround. You can clone the entire repo, and then create a symulink for subdirectory:

mkdir <repo_dir>
cd <repo_dir>
git clone <repo_url>
ln -s <sub_dir> <your_location_where_you_want_to_checkout_sub_dir>

Again, this is not a solution - just a workaround. You will still clone the whole repo, and you can pull the changes only from . However, this was useful in some case of mine.

1
On

Git works on the repository level. You will not be able to select only a subdirectory. If the repository that you are interested in has a web interface, you might be able to navigate to your subdirectory and grab it.

2
On

Suppose your project is in a dir called project, and you want only those commits which touch project/dirB.

Then:

git clone project/ subproject/
cd subproject
git filter-branch --prune-empty --subdirectory-filter dirB HEAD 

subproject will now contain the git history which touches dirB.

0
On

Cf git-archive(1) Manual Page.

With a shell command:

git archive --remote=<repo_url> <branch> <path> | tar xvf -
0
On

It's not really cloning, but if you just want a part of a project to start a new repo with, go into your repo and

git archive master <subdir> | tar -x -C /somewhere/else

Then go /somewhere/else and start a new repo there.