IT/잡다구리

[Git] branch 덮어씌우기

월공 2021. 11. 17. 09:47
728x90
300x250

브랜치가 두개 있다.

 

master , branch1

 

branch1 에서 작업한걸 master 에 덮어씌우고싶은 상황일 경우.

git checkout branch1

git merge -s ours master

git checkout master

git merge branch1

 

이러면 끝

728x90
300x250