develog

[git] git status untracked file not showing 본문

Dev/git

[git] git status untracked file not showing

냐옴 2021. 3. 17. 09:11

git status 실행시 신규 추가된 파일이 보이지 않을 때

$ git status
Untracked files:
	src/com/mycorp/task/

git status --untracked-files=all  으로 실행

$ git status --untracked-files=all
Untracked files:
	src/com/mycorp/task/MyTask.java

git config 에 등록

# config 에 등록
$ git config --global status.showuntrackedfiles all

# config 등록 내용 확인
$ git config --list
status.showuntrackedfiles=all

# config 에서 삭제
$ git config --global --unset status.showuntrackedfiles

 

simpleit.rocks/git/tutorials/showing-untracked-files-in-status-after-creating-new-directories-in-git/

 

Showing Untracked Files In Status After Creating New Directories In Git

How to list all files in a new directory when checking the git status instead of just seeing the directory name

simpleit.rocks

 

'Dev > git' 카테고리의 다른 글

[git] merge vs rebase  (0) 2021.03.31
[git] git branching model  (0) 2021.03.31
[git] .gitignore  (0) 2021.03.18
[git] rollback  (0) 2021.03.02
[git] config, init  (0) 2020.01.09
Comments