6

我刚刚创建了一个新的 Heroku 应用程序,但我无法将backend我的 repo(分支staging)的子树文件夹推送到新创建的应用程序myapp-staging(还没有分支)。

这是我推送子树的方式:

git push heroku `git subtree split --prefix=backend staging`: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.
error: failed to push some refs to 'git@heroku.com:myapp-staging.git'

我试过了git fetch heroku。这个“不合格的目的地”是什么意思?这个命令不应该创建远程分支吗?

4

2 回答 2

10

好的,感谢http://makingsoftware.wordpress.com/2013/02/16/using-git-subtrees-for-repository-separation/

我试过了:

git subtree split --prefix=bakcend -b test
git push heroku test:master

它就像一个魅力。问题可能出在使用 subtree 命令创建分支...

于 2013-09-07T15:33:39.173 回答
1

正如这里所讨论的,您可以推动refs/heads/master解决此问题,之后您可以更改回master,尽管我仍然不完全确定 /why/ 这有效。

# run this once
git push origin master:refs/heads/master

# now you can use this forever
git push origin master
于 2015-08-18T09:19:53.297 回答