Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 31 |
Tags
- 네트워크
- web.xml
- Eclipse
- import
- Quartz
- tomcat
- find
- port
- 줄바꿈 문자
- grep
- 단축키
- Windows 10
- Windows
- GIT
- Source
- ssh
- IntelliJ
- maVen
- JavaScript
- resource
- VirtualBox
- bash
- netsh
- vscode
- context
- plugin
- lsof
- profile
- Mac
- xargs
Archives
- Today
- Total
develog
[git] git status untracked file not showing 본문
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
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