codestates / codestates/BowWow
[Error Handling] git pull 에러
Open
Error Handling
- Dominant language
- JavaScript
- Stars
- 0
- Forks
- 3
- PR merge metrics
- No merged PRs in 30d
Description
### 어떤 에러인가요?
- 에러 메시지
- 프론트엔드에서 공통작업을 마치고 서로를 페어로 등록하여 pull request를 시도하다가 다음과 같은 오류를 만났다.
```js
git merge Updating e4ea95d..f5ebfb7
error: Your local changes to the following files would be overwritten by merge:
소스~
Please commit your changes or stash them before you merge. Aborting
```
여기서 다음과 같이 해결했다.
### 에러 핸들링 방법
- 핸들링 방법에 대해서 간단하게 기록해보세요.
```js
//첫번째로 터미널에 다음과 같이 입력한다.
git stash
// 두번째로 다음과 같이 입력해주면 된다.
git pull
```
에러 핸들링을 위해 참고한 레퍼런스 링크
https://jybaek.tistory.com/389
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.