getkirby-v2 / starterkit

This is the deprecated starterkit for Kirby v2.
http://getkirby.com
Other
301 stars 94 forks source link

git clone request fails to copy /kirby and /panel folders #48

Closed samuelkobe closed 9 years ago

samuelkobe commented 9 years ago

Starting with the online docs here: http://getkirby.com/docs/installation/running-with-php .

I've run the clone command but it doesn't seem to get me the /kirby or /panel folders just inside the root directory.

Anyone else?

samuelkobe commented 9 years ago

Additional info:

Downloading, unzipping and using MAMP seems to work fine, as the zipped download has the /kirby and /panel sub folders.

samuelkobe commented 9 years ago

The docs at: http://getkirby.com/docs/installation/running-with-php have the addition of: --recursive in the git command.

I tried simply running git clone https://github.com/getkirby/starterkit.git and this seemed to get me the sub folders but not their contents.

Also I see that the subfolders /kirby and /panel are themselves individual git repos. I'm guessing this is where the --recursive becomes important?

Anyone know what I am doing incorrectly here?

samuelkobe commented 9 years ago

SOLUTION (for me):

Running: git clone --recursive git@github.com:getkirby/starterkit.git works! :+1:

Instead of: git clone --recursive https://github.com/getkirby/starterkit.git - doesn't work :-1:

Possibly because it is not a SSH connection? Completely guessing.