トピックブランチで作業を開始します
•-•-• < topic
/
•-• < master
トピックブランチをプッシュします
$ git push origin topic
他の誰かが変更を master にプッシュする
•-•-• < origin/topic
/
•-•-•—• < origin/master
ローカル マスターを更新してトピックをリベースするにはどうすればよいですか?
履歴は次のようになります
•-•-• < topic
/
•-•-•—• < master
私がしようとしていること
; update master
$ git checkout master
$ git fetch origin
$ git merge --ff-only origin/master
; rebase topic
$ git checkout topic
$ git rebase master
問題
私のコミットはすべて、コミットさtopic
れていないと見なされます。だから私がしようとするとgit push origin topic
、私は得る
! [rejected] topic -> topic (non-fast-forward)
error: failed to push some refs to '/path/to/repo.git'
hint: Updates were rejected because the tip of your current branch is behind
hint: its remote counterpart. Merge the remote changes (e.g. 'git pull')
hint: before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
ソリューション?
ブランチを とマージしたくないことに注意してください。不必要にブランチをマージすることなく、ローカル リポジトリを更新したいだけです。topic
master