LoginSignup
0
0

git push --force origin branch され強制上書きしたい場合

Posted at
git push --force origin branch

されて、ローカルで作業中の変更を気にせず、強制上書きしたい場合は、

# リモートリポジトリの最新情報をローカルに取得
git fetch origin branch

# ローカルがリモートと同じになるようにハードリセット(強制上書き)
git reset --hard origin/branch

とやればOK。

0
0
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
0
0