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
- react next
- Vue
- nextjs사용법
- 리액트
- vue 이벤트 수신
- postcss
- vue 지역 컴포넌트
- 폼 입력 바인딩
- flex
- SCSS import
- 이벤트 수식어
- 고양이 사진 검색기
- 프로그래머스 K_Digital Training
- vue mixin
- KDT 프로그래머스 데브코스 프론트엔드
- SCSS extend
- 프로그래머스 데브코스
- 리스트 렌더링
- SCSS forward
- 프로그래머스 프론트엔드 데브코스
- 다른컴퓨터에서 git사용
- intersection opserver
- KDT 프로그래머스
- git 같은계정 다른 컴퓨터
- vuex map
- Spacer
- 프로그래머스 데브코스 프론트엔드
- SCSS use
- netlify redirect
- 쌓임맥락
Archives
- Today
- Total
혼자 적어보는 노트
The following untracked working tree files would be overwritten by checkout 본문
Error
The following untracked working tree files would be overwritten by checkout
jinist 2022. 11. 6. 04:21
폴더명을 select-> Select로 변경하고 다른 추가작업을 하고 커밋을 했는데
git에서 대소문자를 구분을 못해서 변경이 적용이 안되었다.
git config core.ignorecase false
위와 같이 git설정을 하고나니 대소문자 구분은 하게 되었는데
git설정을 변경하고 develop에 적용하기 전에 만들어야 했던 브랜치들이 있었고
그 브랜치를 돌아다니던 과정에서 아래와 같은에러가 발생했다.
The following untracked working tree files would be overwritten by checkout
해결 방법 1. untracked file 제거
git clean -fd --dry-run
파일을 인식을 못하는건지 위의 명령어로 해결이 안되어서 다른 방법을 알아보았다.
해결 방법 2. 강제로 이동하기
git checkout -f [브랜치명]
강제로 이동해서 폴더 명을 다시 바꾸니 해결이 되었다.
'Error' 카테고리의 다른 글
[emotion] Component selectors can only be used in conjunction with babel-plugin-emotion (0) | 2023.01.30 |
---|---|
[Error/Storybook] ModuleNotFoundError: Module not found: Error (0) | 2022.11.23 |
[Webpack] webpack-dev-server script 2번 실행 (0) | 2022.09.01 |
Component definition is missing display name (0) | 2022.07.29 |
모바일 이미지 업로드 시 이미지 회전 현상 (0) | 2022.07.12 |
Comments