Git 강제 pull
1) remote repository에서 최신 commit 정보 가져와
2) head를 옮긴 후
3)받아오기
1. remote repository에서 최신 commit 정보 가져오기
git fetch --all
2. head를 해당 repository branch의 최신 commit을 가리키게 하기
git reset --hard origin/<branchname>
git reset --hard origin/master
3. local에 commit 을 병합
git pull
참고 :
'git' 카테고리의 다른 글
[Git] git 특정 커밋 다운 (0) | 2024.05.08 |
---|---|
[Git] git clone change directory name (1) | 2024.01.03 |
[Git] git clone 특정 브랜치 (0) | 2023.11.01 |
[Git] git 원격저장소 연결하기 (0) | 2022.08.18 |
댓글