1. ホーム
  2. git

[解決済み] チェックアウトできません。

2022-11-15 11:27:29

質問

作業ディレクトリからファイルを削除しようとしているのですが、以下のコマンドを使用した後に

git checkout file_Name.txt

次のようなエラーメッセージが表示されました。

error: path 'first_Name.txt' is unmerged

それは何なのか、どうすれば解決するのか。

以下は私のgitの状態です。

$ git status
On branch master
You are currently reverting commit f200bf5.
  (fix conflicts and run "git revert --continue")
  (use "git revert --abort" to cancel the revert operation)

Unmerged paths:
  (use "git reset HEAD <file>..." to unstage)
  (use "git add <file>..." to mark resolution)

        both modified:      first_file.txt

Untracked files:
  (use "git add <file>..." to include in what will be committed)

        explore_california/

no changes added to commit (use "git add" and/or "git commit -a")

どのように解決するのですか?

gitから追跡ファイル(first_file.txt)を削除する場合。

git rm first_file.txt

また、未追跡のファイルを削除するには

rm -r explore_california