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
- MongoDB
- useState
- 프론트엔드
- sql
- React
- 프로그래머스
- 22938번
- 참가후기
- ㅐㄱ이
- 장고이미지처리
- 네이버커넥트재단
- GIT
- 프로그래머스입문
- 코딩기초트레이닝
- 장고 다중이미지
- 파이썬무료강의
- 파이썬
- django multi image
- 스파르타
- 개인정보수집유효기간
- python
- error
- 20492번
- 반응형
- css
- html
- 스파르타코딩클럽
- jquery
- 무료강의
- SEF2022
Archives
- Today
- Total
코딩,해볼까
git.log_06.08. 본문
error: The following untracked working tree files would be overwritten by merge:
users/serializers.py
users/urls.py
Please move or remove them before you merge.
1. stash를 했는데도 남아있는 파일들.
- stash는 commit 내역을 저장해주므로 아래와 같이 간단하게 해결이 가능했다.
git add -A
git stash
git pull
...
2. 로컬의 내용을 무시하고 강제 내려받기 (강제 pull)
git fetch --all
git reset --hard origin/master
git pull origin master
'error' 카테고리의 다른 글
error.log_05.28. (0) | 2023.05.28 |
---|
Comments