diff options
author | Alan Pearce | 2023-04-19 13:34:29 +0200 |
---|---|---|
committer | Alan Pearce | 2023-04-19 13:34:29 +0200 |
commit | af4676e4bd0694897c9572e5a09baedea2a7b06b (patch) | |
tree | 971439e2df64f772e6d7057f8fe21a37bd10bef1 /post/git-cloning-similar-repositories.md | |
parent | f9362575b33f29b0a3dcb735ef886eebd3c764e6 (diff) | |
download | website-af4676e4bd0694897c9572e5a09baedea2a7b06b.tar.lz website-af4676e4bd0694897c9572e5a09baedea2a7b06b.tar.zst website-af4676e4bd0694897c9572e5a09baedea2a7b06b.zip |
Revert "Use more compatible front-matter marker"
This reverts commit dedca264d10a44a9137a0490941be55a5c32a5fb.
Diffstat (limited to 'post/git-cloning-similar-repositories.md')
-rw-r--r-- | post/git-cloning-similar-repositories.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/post/git-cloning-similar-repositories.md b/post/git-cloning-similar-repositories.md index 0ba0b54..8f1eb43 100644 --- a/post/git-cloning-similar-repositories.md +++ b/post/git-cloning-similar-repositories.md @@ -1,10 +1,10 @@ ---- ++++ description = "Speed up cloning of similar git repositories" title = "Cloning Similar Git Repositories" date = 2014-06-22T08:35:24Z [taxonomies] 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 |