26
18

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

git statusで新規ディレクトリ内のファイルが表示されなくて焦った<status.showUntrackedFiles>

Posted at

自分用メモ

git status は、-uオプションを何もつけない

git status

だと、

git status -unormal

と同じ。
なので、新規(=追跡されていない)ディレクトリに含まれているファイルは表示されない!

表示させるには

git status -uall

とする必要がある。

逆に、追跡されていないファイルをすべて表示しない場合は

git status -uno

でOK。


いちいちオプション付けるのも面倒なので、デフォルト設定するとよさげ。

表示させる場合

git config status.showUntrackedFiles all

表示させない場合

git config status.showUntrackedFiles no

参考
https://git-scm.com/docs/git-status

...読めばすぐわかる話なのですが、知らなくて焦った。

26
18
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
26
18

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?