Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I clone my github repo's wiki? I know it's saved as a separate git repo, but can't remember the path.

I've tried ...reponame/wiki.git and ...reponame.git/wiki but neither are correct.

share|improve this question

1 Answer

Append .wiki.git to the repo name.

i.e. if your repo name was foobar

git clone git@github.com:myusername/foobar.git would be the path to clone your repo

and

git clone git@github.com:myusername/foobar.wiki.git would be the path to clone its wiki.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.