How to click on github wiki without username and password?

I managed to complete the configuration in order to pull / push github out of my repository without username and password using ssh key.

But I cannot find a way to pull / push the wiki for this repo without username and password.

Can anyone help?

Thank!

+4
source share
1 answer

Wikis are just Git repositories, you can make changes locally and push them to your repository. But you have to clone it separately.

Add .wiki.gitto repository name.

That is, if your repository name was foobar:

git clone git@github.com:myusername/foobar.git

is the way to clone your repository and

git clone git@github.com:myusername/foobar.wiki.git

is the way to clone your wiki.

wiki :

enter image description here

clone https, ssh clone, , .

ssh:

git@<host>:<username>/<repo_name>.wiki.git

, , . -, , , .

+2

Source: https://habr.com/ru/post/1662714/


All Articles