次の作業ツリーの状態があります
$ 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
#
新規と変更の両方のセクションで同じファイルですか?私は何をすべきか?
7
私は、誰かがこの状況にどうやって入り込むのか、なぜそれが起こり、なぜ解決策が機能するのかを誰かに説明してほしいと思います。
—
Marcos Dione 2017
私は、マージの競合に陥ったリベースの後にスタッシュをポップしたときにこの状況に陥りました(スタッシュポップはマージを実行します)。変更はまだそこにありました....それらを削除するために..私はもう一度ファイルのチェックアウトを試みました..それは上記のエラーを見たときです。
—
Arindam Roychowdhury