summary refs log tree commit diff stats
path: root/post/git-cloning-similar-repositories.md
diff options
context:
space:
mode:
authorAlan Pearce2023-04-19 13:26:53 +0200
committerAlan Pearce2023-04-19 13:27:19 +0200
commitdedca264d10a44a9137a0490941be55a5c32a5fb (patch)
tree2574e254fd062489745e87ac8669629076d1c4ec /post/git-cloning-similar-repositories.md
parentb1ee898dafe258fede47f083b3ec23efc909eb30 (diff)
downloadwebsite-dedca264d10a44a9137a0490941be55a5c32a5fb.tar.lz
website-dedca264d10a44a9137a0490941be55a5c32a5fb.tar.zst
website-dedca264d10a44a9137a0490941be55a5c32a5fb.zip
Use more compatible front-matter marker
Diffstat (limited to 'post/git-cloning-similar-repositories.md')
-rw-r--r--post/git-cloning-similar-repositories.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/post/git-cloning-similar-repositories.md b/post/git-cloning-similar-repositories.md
index 8f1eb43..0ba0b54 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