Cloning a gitlab wiki returns the repo, not the repo's wiki
I'm running gitlab version 8.10.0-pre
Cloning a repo's wiki via http protocol retrieves the wiki, as expected. However, cloning the repo's wiki via git protocol retrieves the repo, NOT the wiki. Below is the output of the two git clone commands. Notice that the http url retrieved 53 objects, but the git url retrieved 2800 objects
C:\Projects\test]git clone http://git.nickel.local/melanie/application.wiki.git app_wiki_http
Cloning into 'app_wiki_http'...
remote: Counting objects: 53, done.
remote: Compressing objects: 100% (50/50), done.
remote: Total 53 (delta 16), reused 0 (delta 0)
Unpacking objects: 100% (53/53), done.
Checking connectivity... done.
[C:\Projects\test]git clone git@git.nickel.local:melanie/application.wiki.git app_wiki_git
Cloning into 'app_wiki_git'...
remote: Counting objects: 2800, done.
remote: Compressing objects: 100% (1686/1686), done.
remote: Total 2800 (delta 1049), reused 2751 (delta 1007)
Receiving objects: 100% (2800/2800), 5.74 MiB | 7.62 MiB/s, done.
Resolving deltas: 100% (1049/1049), done.
Checking connectivity... done.
Checking out files: 100% (2031/2031), done.