fork GUI를 사용하다 상대방의 브랜치에서 특정 파일만 가져오고 싶어졌다
아래의 사진에서 origin/kjw/host 브랜치의 RoomPrice.java 파일만 내 브랜치로 가져와보자
일단 경로 복사
콘솔 창을 열고
아래의 명령어 참고해
git checkout origin/<branch_name> -- path/to/file # 특정 파일 가져오기
위 명령어에서 <branch_name>은 상대방의 브랜치 이름을, path/to/file은 가져오고자 하는 특정 파일의 경로와 파일 이름을 나타냅니다.
다음과 같이 명령어 작성
path/to/file에는 위에서 복사한 경로 붙이기
git checkout origin/kjw/host -- src/main/java/com/mywebapp/model/RoomPrice.java
'Git, Github 😺' 카테고리의 다른 글
[Git, Github error] error: src refspec main does not match anyerror: failed to push some refs to 'https://github.com/rosa2070/fcjavaminiproject.git' (0) | 2024.01.18 |
---|---|
github 꾸미기 (1) | 2024.01.13 |
src refspec master does not match any 해결방법 (0) | 2023.12.17 |
[Git] 깃 원격 저장소 연결 끊기(git remote 레포지토리 삭제) (0) | 2023.01.02 |
[Git] gitignore로 몽고DB 계정 보호하기 (0) | 2023.01.02 |