Githubにあるリポジトリから git pull
をしたらエラーがでてpullが失敗しました。
pullするとエラー
git pull origin master
From github.com:pugiemonn
* branch master -> FETCH_HEAD
Updating 0801352..065ef52
error: The following untracked working tree files would be overwritten by merge:
hoge.html
Please move or remove them before you can merge.
Aborting
これはhoge.htmlをgitで管理していなかったため発生したようです。マージする前にhoge.htmlを移動するか取り除けと言われています。
hoge.htmlファイルは消しても問題無いファイルでしたので、hoge.htmlを削除することでエラーが消えました。