1. ホーム
  2. git

[解決済み] Git: ローカルでの変更を元に戻せない(エラー:パス ... がマージされていない)。

2022-02-27 03:53:28

質問

以下のような作業ツリーの状態です。

$ git status foo/bar.txt
# On branch master
# Unmerged paths:
#   (use "git reset HEAD <file>..." to unstage)
#   (use "git add/rm <file>..." as appropriate to mark resolution)
#
#       deleted by us:      foo/bar.txt
#
no changes added to commit (use "git add" and/or "git commit -a")

ファイル foo/bar.txt があり、それを再び "未変更の状態" にしたいのです (「svn revert」のようなもの)。

$ git checkout HEAD foo/bar.txt
error: path 'foo/bar.txt' is unmerged
$ git reset HEAD foo/bar.txt
Unstaged changes after reset:
M       foo/bar.txt

さて、混乱してきましたね。

$ git status foo/bar.txt
# On branch master
# Changes to be committed:
#   (use "git reset HEAD <file>..." to unstage)
#
#       new file:   foo/bar.txt
#
# Changed but not updated:
#   (use "git add <file>..." to update what will be committed)
#   (use "git checkout -- <file>..." to discard changes in working directory)
#
#       modified:   foo/bar.txt
#

両方のセクションで同じファイル、新しい を修正しましたか?どうしたらいいのでしょうか?

解決方法を教えてください。

やり方が悪いのです。まずリセットしてファイルのステージを解除し、次にチェックアウトしてローカルの変更を元に戻すことになっています。

これを試してみてください。

$ git reset foo/bar.txt
$ git checkout foo/bar.txt