git branch를 feature-1로 전환 했는데 아래 오류가 나왔다Your branch and 'origin/feature-1' have diverged,and have 4 and 7 different commits each, respectively. 문제 원인 및 해결책은? 문제 원인 Local branch와 Remote branch('origin/feature-1')가 각각 상대방에게는 없는 커밋을 가지고 있다는 뜻Local branch : 'origin/feature-1'에 없는 4개의 커밋이 있음Remote branch ('origin/feature-1') : Local branch에 없는 7개의 커밋이 있음 해결 책local 수정사항도 살리고 싶은 경우Fetch & Rebase를 하자Re..