[Git] git workflow & rebase


Git Rebase


Rebase

  • がどのように1つのブランチから別のブランチに統合されるかは、その名の通り、コミットベースを再決定する操作
  • である.

    ライブラリ順序


    1.自分のブランチで

    git add . , git commit -m "message"

    2.メインブランチへ移動

    git checkout master

    3.pullまではmergeメソッドと同じです。

    git pull origin master

    4.自分のブランチに移動してマージする

    git chekout barnch , git rebase -i master

    5.トップピック以外のs部(スカッシュ)に変更



    6.コミットメッセージの削除と変更



    7.繰り返し

    git add .

    8. git rebase --continue


    9. push

    git push origin branch --force

    conflict

    $ git rebase --continue