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
- vue3
- bean
- framework
- Github
- 프레임워크
- GIT
- CS
- Spring Framework
- Java
- JSON
- autowired
- 뷰
- HTTP
- 개발자기록
- spring boot
- Spring
- 깃허브에러
- pls-00103
- vue
- https
- error
- oracle
- REST API
- react
- JavaScript
- Entity
- 어노테이션
- DTO
- API
- SQL
Archives
- Today
- Total
o-ohi-code 님의 블로그
nothing added to commit but untracked files present (use git add to track) 해결 본문
Tool/Githup
nothing added to commit but untracked files present (use git add to track) 해결
o-ohi-code 2025. 3. 26. 14:42
🤔 nothing added to commit but untracked files present (use git add to track) 오류가 나는 이유가 뭘까?
- 이는 error 가 아닌 Git 이 알려주는 정보 메시지로.
- "아직 커밋할 파일이 선택되지 않았어" 라는 뜻이다.
- git add 명령어로 커밋할 파일을 저장하지 않았기 때문에 발생하는 문제이다.
✅ nothing added to commit but untracked files present (use git add to track) 해결 방법
git add .
git commit -m "Initial commit"
'Tool > Githup' 카테고리의 다른 글
error: failed to push some refs to 해결 (0) | 2025.03.26 |
---|---|
fatal: refusing to merge unrelated histories 해결 (0) | 2025.03.26 |
LF will be replaced by CRLF the next time Git touches it 해결 (0) | 2025.03.26 |
[Github] 깃허브 프로젝트 올리기 / error 정리 (0) | 2025.03.25 |
[Github] 깃허브 프로젝트 생성 방법 (0) | 2025.03.25 |