일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- SQL
- 백준 1987
- 다이나믹 프로그래밍
- javascript
- 백준 2512번
- ubuntu
- 백준 15787번
- 백준 1253번
- AWS
- SWEA 15612번
- HUFS 모각코 캠프
- 백준 1331번
- MySQL
- react
- 모각코
- 백준 18310번
- 다이나믹프로그래밍
- 백준 3085번
- 백준 17451번
- Python
- 그래프
- 깃헙
- java_programming
- 명품자바
- 백준 16918번
- 머신러닝과 딥러닝
- 백준
- 자바
- 그리디
- 알고리즘
Archives
- Today
- Total
차곡차곡
[Error] git pull 에러 (Your local changes to the following files would be overwritten by merge) 본문
Github
[Error] git pull 에러 (Your local changes to the following files would be overwritten by merge)
sohy 2022. 5. 15. 00:40문제 상황
깃헙에 .DS_Store 파일이 또 올라가 있는 걸 보고 그냥 깃헙에서 지워주고 pull 받았더니 해당 에러 발생
해결 방법
git stash # 현재 디렉토리의 파일들 임시로 백업
git pull origin main
git stash pop # 변경 사항 적용하고 스택에서 제거
'Github' 카테고리의 다른 글
[Error] git push 에러 (fatal: The remote end hung up unexpectedly) (0) | 2022.08.20 |
---|---|
[Error] git commit 에러 (Committing is not possible because you have unmerged files) (0) | 2022.05.15 |
Comments