Reputation: 9839
How do you clone a Github wiki.
The several times I've copied to command from our repo and attempted to clone locally..
git clone https://github.com/[orgname]/[name].wiki.git
I get this error:
fatal: repository git clone https://github.com/[orgname]/[name].wiki.git
not found
Upvotes: 2
Views: 1403
Reputation: 1324957
If it does not work with HTTPS, but works with SSH, it is possible:
git config --global credential.helper
: you might need to remove the credential associated to github.com
)A wrong authentication would generate a 404 (as a security best practice to avoid confirming the existence of a user when bad credentials are provided)
Upvotes: 0
Reputation: 9839
Not sure why it isn't working with the HTTPS, but I changed it to:
git clone [email protected]:devforce/trailmaker.wiki.git
and it works now.
Upvotes: 2