about summary refs log tree commit diff stats
path: root/content/post/git-cloning-similar-repositories.md
diff options
context:
space:
mode:
authorAlan Pearce2023-04-19 13:34:29 +0200
committerAlan Pearce2023-04-19 13:34:29 +0200
commit09ba3629a0683862ead6a6d28e99e8ffa0fe432f (patch)
tree28f067c21fd4c19f0e90f37ceb2c1a98d001cf7c /content/post/git-cloning-similar-repositories.md
parent7f1eac6f3927fe3b20d558086ad692a72ab1d81c (diff)
downloadwebsite-09ba3629a0683862ead6a6d28e99e8ffa0fe432f.tar.lz
website-09ba3629a0683862ead6a6d28e99e8ffa0fe432f.tar.zst
website-09ba3629a0683862ead6a6d28e99e8ffa0fe432f.zip
Revert "Use more compatible front-matter marker"
This reverts commit 8d6342a1aea32d6cde8fb8ac9b9232d421d778c0.
Diffstat (limited to 'content/post/git-cloning-similar-repositories.md')
-rw-r--r--content/post/git-cloning-similar-repositories.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/content/post/git-cloning-similar-repositories.md b/content/post/git-cloning-similar-repositories.md
index 0ba0b54..8f1eb43 100644
--- a/content/post/git-cloning-similar-repositories.md
+++ b/content/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