✅ 원격 저장소에서 README.md 파일을 직접 변경한 후, 로컬 저장소에 반영하는 법에 대해서 알아볼 예정이야.
원격 저장소에 접근하기 위해 원격 저장소 내용 업데이트 후, git pull
$ git remote update
$ git stash
$ git pull
git stash는 1번이후 3번(2번을 건너뛰고) 실행했을 시,
error: Your local changes to the following files would be overwritten by merge:
README.md
Please commit your changes or stash them before you merge.
Aborting
위와 같은 에러가 나면 2번을 넣어서 처리해주면 끝
'Archive > git' 카테고리의 다른 글
[git] xcode .gitignore (2) | 2022.08.08 |
---|---|
[git] 소스트리 전역 gitignore 해결하기 (0) | 2022.07.12 |
[git] git stash (0) | 2022.02.24 |
[git] 폴더에서 특정 파일 Commit & push (0) | 2022.01.21 |
🤦♂️ git 원격 저장소에 올라간 commit 되돌리기 (0) | 2021.06.26 |