diff options
author | Alan Pearce | 2020-11-14 21:19:20 +0100 |
---|---|---|
committer | Alan Pearce | 2020-11-14 21:52:50 +0100 |
commit | 42b9a48be1e1aaa28fb79ac57cdd3063fb8ac7fa (patch) | |
tree | 279e1c567ab73b2beae4d1190112dbda8721fe3c /content/post/git-cloning-similar-repositories.md | |
parent | 5c7878c3d18eae1d635aff080bebaff32bc553ad (diff) | |
download | website-42b9a48be1e1aaa28fb79ac57cdd3063fb8ac7fa.tar.lz website-42b9a48be1e1aaa28fb79ac57cdd3063fb8ac7fa.tar.zst website-42b9a48be1e1aaa28fb79ac57cdd3063fb8ac7fa.zip |
Convert front matter for zola
Diffstat (limited to 'content/post/git-cloning-similar-repositories.md')
-rw-r--r-- | content/post/git-cloning-similar-repositories.md | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/content/post/git-cloning-similar-repositories.md b/content/post/git-cloning-similar-repositories.md index 517ff4d..3200646 100644 --- a/content/post/git-cloning-similar-repositories.md +++ b/content/post/git-cloning-similar-repositories.md @@ -1,10 +1,11 @@ ---- -Categories: ["Development"] -Description: "Speed up cloning of similar git repositories" -Tags: ["git"] -title: "Cloning Similar Git Repositories" -date: 2014-06-22T08:35:24Z ---- ++++ +description = "Speed up cloning of similar git repositories" +title = "Cloning Similar Git Repositories" +date = 2014-06-22T08:35:24Z +[taxonomies] +categories = ["Development"] +tags = ["git"] ++++ With 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][]: git clone git@github.com/my/repo --reference another-repo |