From 60fd9b0303ef4af5538663bc1a502e23f3f472b8 Mon Sep 17 00:00:00 2001 From: "Daniel J. H." Date: Fri, 19 Apr 2013 04:40:55 +0300 Subject: Clone repository recursively, submodule'ed themes Git submodules are great to keep track of themes without having to manage them all in one repository. But cloning the main repository only gets you empty folders for the submodules; an additional init is needed. It's easier and more convenient to just clone the main repository recursively, in order to pull in all themes. --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 02bd5fc..f6118df 100644 --- a/README.rst +++ b/README.rst @@ -18,7 +18,7 @@ directory ``~/pelican-themes``, but yours could be different. Clone the .. code-block:: sh - git clone https://github.com/getpelican/pelican-themes ~/pelican-themes + git clone --recursive https://github.com/getpelican/pelican-themes ~/pelican-themes Now you should have your ``pelican-themes`` repository stored at ``~/pelican-themes/``. -- cgit