about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--content/post/git-cloning-similar-repositories.md19
1 files changed, 19 insertions, 0 deletions
diff --git a/content/post/git-cloning-similar-repositories.md b/content/post/git-cloning-similar-repositories.md new file mode 100644 index 0000000..d0eca13 --- /dev/null +++ b/content/post/git-cloning-similar-repositories.md
@@ -0,0 +1,19 @@
1+++
2Categories = ["Development"]
3Description = "Speed up cloning of similar git repositories"
4Tags = ["Development", "git"]
5title = "Cloning Similar Git Repositories"
6date = 2014-06-22T08:35:24Z
7+++
8With multiple similar git repositories, for example where a base repository contains a framework or base system installation and other repositories are created from that repository, it's possible to save some time when cloning down another repository by using the `reference` option to [git-clone][]:
9
10 git clone git@github.com/my/repo --reference another-repo
11(Where `another-repo` points to a local version of a repository.)
12
13The reference here doesn't have to be the base repository itself, it could just be another variant of it. The speedup can be quite dramatic if the repositories have megabytes of shared history, from minutes to seconds.
14
15On a related note, I'm surprised that [GitHub][] doesn't allow for multiple renamed forks, which would be very useful in this scenario. [BitBucket][] does support this, however. It even has a 'sync' button for pulling updates from the base into the child repositories, which is very useful, especially for those who prefer GUIs over CLIs.
16
17[git-clone]:https://www.kernel.org/pub/software/scm/git/docs/git-clone.html
18[GitHub]:https://github.com
19[BitBucket]:https://bitbucket.org/ \ No newline at end of file