2

最近、Git を使用した独自のブランチ システムを採用しましたが、最近イライラしていることの 1 つは、あるブランチで変更をリモートにコミットしようとすると、別のブランチがリモートの対応するブランチの背後にあるため、Git がコミットを停止することです。 . したがって、変更された各ブランチにチェックアウトし、最初にプルを行ってから元のブランチに戻ってコミットする必要があります。

他のブランチが原因で Git がコミットを停止するのを防ぐことができる設定はありますか。ブランチを切り替える必要をなくすことができる特定のアプローチはありますか?

4

1 に答える 1

0

試す:

git config --global push.default current

ここに記載されているようなエラー メッセージは回避する必要があります。

error: failed to push some refs to 'git@github.com:jkubicek/my_proj.git'
hint: Updates were rejected because a pushed branch tip is behind its remote
hint: counterpart. If you did not intend to push that branch, you may want to
hint: specify branches to push or set the 'push.default' configuration
hint: variable to 'current' or 'upstream' to push only the current branch
于 2012-11-28T09:47:00.037 に答える