3

2 つのブランチがあります: 開発、some_other_name。開発のサブブランチであるsome_other_nameブランチをherokuにプッシュしました。コードをテストしてから開発に切り替え、devブランチでコードを変更しましたが、herokuにプッシュしようとすると次のようになりました:

To git@myapp.git
 ! [rejected]        development -> master (non-fast-forward)
error: failed to push some refs to 'git@myapp.git'
hint: Updates were rejected because a pushed branch tip is behind its remote
hint: counterpart. Check out this branch and merge the remote changes
hint: (e.g. 'git pull') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.

つまり、 some_other_name ブランチを開発にマージする必要があります。これらのブランチをマージせず、代わりに開発のみをプッシュする方法はありますか?

4

2 に答える 2

7

はい、--forceherokuへのpush時にオプションでできます。

$ git push -f heroku development:master

于 2013-02-25T11:03:39.907 に答える