前提・実現したいこと
- VScodeで作成したファイルを新規作成(Untracked)扱いにしたい
- 新規作成したファイルをコミットしたい。
発生している問題・エラーメッセージ
- 新規作成したファイルがUntracked扱いにならず、ファイル名がグレーアウト表示になる(除外されている・・・?)
- Untracked扱いならないのは、**Viewsの「new.html.haml」、「edit.html.haml」**のみ(それ以外はUntracked、modified扱いになる)
- Sourcetreeにも表示されずコミットすることができない
該当箇所
試したこと
- gitignoreを確認したが、除外する設定はされていない
# See https://help.github.com/articles/ignoring-files for more about ignoring files. # # If you find yourself ignoring temporary files generated by your text editor # or operating system, you probably want to add a global ignore instead: # git config --global core.excludesfile '~/.gitignore_global' # Ignore bundler config. /.bundle # Ignore the default SQLite database. /db/*.sqlite3 /db/*.sqlite3-* # Ignore all logfiles and tempfiles. /log/* /tmp/* !/log/.keep !/tmp/.keep # Ignore pidfiles, but keep the directory. /tmp/pids/* !/tmp/pids/ !/tmp/pids/.keep # Ignore uploaded files in development. /storage/* !/storage/.keep /public/assets .byebug_history # Ignore master key for decrypting credentials and more. /config/master.key /public/packs /public/packs-test /node_modules /yarn-error.log yarn-debug.log* .yarn-integrity node_modules
- VScodeの再インストール→変化なし
- Mac再起動→変化なし
補足情報
無視して作業を進めることもできますが、他のプロジェクトでも同様のことが起きており困ってます。。
わかる方いましたら、よろしくお願いします。
回答1件
あなたの回答
tips
プレビュー