LoginSignup
2
5

More than 5 years have passed since last update.

topicブランチでgit rebase masterする

Last updated at Posted at 2016-09-21

コマンドだけ

$ git checkout master

$ git pull

$ git checkout <topicブランチ>

$ git rebase master

コンフリクトを修正

$ git add <修正したファイル>

$ git rebase --continue

$ git log
commit履歴を確認

$ git push -f origin <topicブランチ>
2
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
5