티스토리 뷰
Tip and Error/Github
[git pull Error] Your local changes to the following files would be overwritten by merge
geonwoopaeng@gmail.com 2021. 7. 1. 19:472개의 컴퓨터를 이용해서 git add, commit push, pull을 이용해서 사용하다 보면 다음과 같은 문제가 발생합니다.
왜 이런지 알아보니충돌
이 발생한 것이었습니다.
=> 같은 branch(master)에서 여러 사람이 작업하여 충돌 발생
해결
1.
commit your changes before you merge
- merge하기 전에 commit 해라
$git add *
$git commit -m ""
$git push
$git pull origin master
2.
Stash them before you merge
- stash 명령어를 사용해라
$git stash
$git pull origin master
$git stash pop #저장해둔 작업을 stack에서 제거
< git stash >
- 하던 작업을 임시로 stacck에 저장해 두는 것
반응형
'Tip and Error > Github' 카테고리의 다른 글
web cloud에 올리기(GitHub) (0) | 2021.07.17 |
---|---|
[Error] fatal: couldn't find remote ref master (0) | 2021.07.04 |
github에 있는 변경된 내용 가져와서 사용하기 (2) | 2021.06.01 |
[vscode Error] Your branch is based on 'origin/master', but the upstream is gone. (0) | 2021.04.27 |
협업하기(추가 작성) (0) | 2021.03.17 |
공지사항
최근에 올라온 글