-
Git remote에서 특정 파일의 내용만 가져오기error handling/Simple tips 2023. 11. 9. 15:17
리모트에서 충돌이 발생했을 때 특정 파일의 내용만 가져와서 충돌을 해결하고 싶은 경우에 활용할 수 있는 방법
git fetch <remote> <branch>
위의 명령어로 최신 remote 상황들을 업데이트 한다.
git checkout origin/dev -- path/to/file ex) git checkout origin/dev -- src/components/providers/ModalProvider/index.tsx
위의 명령어로 origin/dev branch의 특정 경로에 있는 파일의 변경 이력만 가져온다.
- git fetch
원격 저장소의 데이터를 로컬에 가져오기만 하는 것 - git pull = fetch + merge
원격 저장소의 데이터를 로컬 저장소에 가져와 병합하는 것
'error handling > Simple tips' 카테고리의 다른 글
location.search 파라미터로 받아온 한글 쿼리의 깨짐 현상 (0) 2022.11.10 firestore 경로 설정 (0) 2022.09.07 firebase 에 이미지 저장하기 (0) 2022.08.02 office hour에서 나온 질문 정리 (testcase / third-party API) (0) 2020.07.03 [github] commit 기록을 터미널에서 보는 방법 (0) 2020.07.02 - git fetch