Reputation: 5976
I want to move my GitHub repo from GitHub to GitLab. I want to move everything(issues, wiki and ...).
I use python-github-backup and backup everything but I do not know how to push issues and wiki.
I search and find out I can use git push URL/repo.wiki.git
but it does not work in my scenario.
How can I push issues and wiki?
Upvotes: 1
Views: 307
Reputation: 386
You must use git clone
, not git push
.
To edit Wikis locally, you must first clone the Wiki.
Say, the GitHub username is test
, and the repository name is test-repo
.
In order to do so, you must run the following command in Git bash:
git clone https://github.com/test/test-repo.wiki.git
About the issues, this may help you do
various operations with issues locally.
Hope this helps. 🙂
Upvotes: 1