show/hide this revision's text 3 added 331 characters in body

You want to clone your repository and then use git filter-branch to mark everything but the subdirectory you want in your new repo to be garbage-collected. To clone your local repository:

 $ git clone --no-hardlinks /XYZ /ABC

The --no-hardlinks switch makes git use real file copies instead of hardlinking when cloning a local repository. The garbage collection and pruning actions will only work on blobs (file contents), not links.

Then just filter-branch and reset to exclude the other files, so they can be pruned:

 $ git filter-branch --subdirectory-filter ABC HEAD
 $ git reset --hard
 $ git gc --aggressive
 $ git prune

and now you have a local git repository of the ABC sub-directory with all its history preserved.

EDIT -- For most uses, git filter-branch should have the added parameter -- --all. (Yes that's really dash dash space dash dash all. This needs to be the last parameters for the command.) As Matli discovered, this keeps the project branches and tags included in the the new repo.

show/hide this revision's text 2 Simplify instructions & correct subdirectory reference

You want to clone your repository and then use git filter-branch to mark everything but the subdirectory you want in your new repo to be garbage-collected. To clone your local repository:

 $ mkdir ABC
 $ cd /ABC
 $ git init 
 $ git clone --no-hardlinks /XYZ ABC.git
/ABC

The --no-hardlinks switch makes git use real file copies instead of hardlinking when cloning a local repository. The garbage collection and pruning actions will only work on blobs (file contents), not links.

Then just filter-branch and reset to exclude the other files, so they can be pruned:

 $ git filter-branch --subdirectory-filter ABC HEAD
 $ git reset --hard
 $ git gc --aggressive
 $ git prune

and now you have a local git repository of the ABC sub-directory with all its history preserved.

show/hide this revision's text 1

You want to clone your repository and then use git filter-branch to mark everything but the subdirectory you want in your new repo to be garbage-collected. To clone your local repository:

 $ mkdir ABC
 $ cd /ABC
 $ git init 
 $ git clone --no-hardlinks /XYZ ABC.git

The --no-hardlinks switch makes git use real file copies instead of hardlinking when cloning a local repository. The garbage collection and pruning actions will only work on blobs (file contents), not links.

Then just filter-branch and reset to exclude the other files, so they can be pruned:

 $ git filter-branch --subdirectory-filter ABC HEAD
 $ git reset --hard
 $ git gc --aggressive
 $ git prune

and now you have a local git repository of the ABC sub-directory with all its history preserved.