code.google.com
is exporting all projects to Github... And when export, produce a separated branch named wiki
for the Wiki of the project...
My project has only Wiki... Now, at Github,
https://github.com/MyUser/MyProject
the MyProject (exported from code.google) is "empty" (no source code, etc.), have only a README.md
. So, how to merge the wiki branch to the master?
See also How to do a GitHub "merge branch"?
NOTE
With the help of this answer we can see how to clone the wiki
branch,
git clone -b wiki stdGithubMyProjectURL
cd MyProject
ls
(where stdGithubMyProjectURL is the standard Github copy-URL of MyProject)
(the ls
command in this context show only the branch wiki
files, not show any master file)
so, a variant of this question is how to merge wiki
to master
from terminal?
I see finishGoogleCodeGitHubWikiMigration ... but it is so complex and "obscure"... not try to use.