例えばレビュー中に小さなバグを見付けたので,レビュイーにpush -fしてもらった後にその変更を手元に持ってくるにはどうすればよいか.歴史が変わっているのでgit pull
はできない.
今までは以下のように別ブランチに移動&削除&再度ブランチ作成していた.
# someone force-pushed to `topic` branch
git co master
git branch -D topic
git fetch
git co topic # creates `topic` branch from `origin/topic`
しかし,わざわざ移動&削除しなくとも以下のようにreset --hard
すればよい
git fetch
git reset --hard origin/topic
thanks to @uasi!