시그마 삽질==six 시그마

강제로 pull 받기 본문

프로그래밍/GIT

강제로 pull 받기

Ethan Matthew Hunt 2022. 12. 25. 19:58

1. 덮어씌움 당하고자하는 브랜치로(A브랜치) checkout

2. git fetch --all  (인텔리제이는 fetch 버튼 클릭)

3. git reset --hard <강제로 pull 받을 브랜치명>   <---이걸하면 로컬A브랜치의 push안한 커밋과 local changes는 다 날라간다.

ex) remote 마스터로 로컬 브랜치A를 강제로 덮어씌우고 싶을시 git reset --hard origin/master

ex) remote feature/test2로 로컬브랜치A를 강제로 덮어씌우고 싶을시  git reset --hard origin/feature/test2

 

 

 

// 만약 요기까지 한거를   2.   상태로 다시 돌아가길 원할시(롤백)

//  git reset --hard ORIG_HEAD

// 그럼 다시 로컬브랜치 A 상태로 돌아가면서 push 안한 commit은 살아나지만  local changes는 날라가있는 상태임.

https://sigmasabjil.tistory.com/12

 

 

4. 

(1) git push

A remote와 A local 브랜치 confilct  조정해준다. (yours가 pull로 변한 local A branch,  theirs가 기존 A remote branch)

강제로 pull로 받은거로 싹 덮어씌우고 싶으면 전체 yours로 한다

 

기존 A push되었던 히스토리는 남아있고 추가로 강제로 pull받은 브랜치의 history가 누적된다 (merge / rebase)

 

 

// 만약  4.   머지작업 중에  3.    상태로 돌아가고 싶으면

//  git reset --hard ORIG_HEAD

// 그럼 다시 로컬브랜치 A 상태로 돌아가면서 push 안한 commit은 살아나지만  local changes는 날라가있는 상태임.

https://sigmasabjil.tistory.com/12

 

 

(2) git push --force 

모든 히스토리가 강제로 받고자하는 브랜치명꺼로 바뀐다.

'프로그래밍 > GIT' 카테고리의 다른 글

fork repository에 원본 repository 수정분 반영하기  (0) 2020.10.18
git tag  (0) 2020.10.18
git rebase  (0) 2020.08.31
git 기본 명령어  (2) 2020.08.20
git status , git diff  (0) 2020.08.20
Comments