git rebase からの push --force-with-lease

PRを出す前に rebase して、安全に push する方法。 以下は開発ブランチ上(feature branch)ですべて行う。 #開発ブランチに最新のリモートリポジトリをリベースで取り込む git pull --rebase origin master #リモートリポジトリに安全にpushする git push --force-with-lease origin 開発ブランチ名 --force-with-lease…