我有一个很大的git repo(从SVN repo创建),我想将其推送到github。鉴于它很大,我不能直接尝试将其推入,因为它会因“包装太大”错误而失败。
到目前为止一切顺利,我可以一次推送一次回购。但是,当我尝试执行此操作时,会发生以下情况:
git push origin 86c310d8a680d6d0e052fa7db89adb25348f3e54:master
error: unable to push to unqualified destination: master
The destination refspec neither matches an existing ref on the remote nor
begins with refs/, and we are unable to guess a prefix based on the source ref.
因此,远程仓库中还没有master分支,但是我试图将其推送到它,但是失败了。
我该如何解决?或如何在远程上创建一个空的master分支以便推送到它?