C:\Users\qkrwl\AndroidStudioProjects\duos-android>git checkout main
Already on 'main'
Your branch is up to date with 'origin/main'.
-> git checkout master 로 해결 가능.
git checkout main
error: Your local changes to the following files would be overwritten by checkout:
-> 현재 branch 에서 add 와 commit 을 진행한 후 checkout 하면 해결 가능.
git remote update // git remote 갱신하기
git branch -r // 원격 저장소의 브랜치 확인
git branch -a // 로컬+원격 저장소의 브랜치 확인
git checkout -t origin/main -> 로컬에 동일한 이름의 branch 를 생성하면서 원격 브랜치를 가져온다.
-> 원격 저장소의 origin/main 의 내용을 로컬 브랜치에 적용하는 것.
'안드로이드개발' 카테고리의 다른 글
[Kotlin] ViewModel, Livedata 로 Fragment 끼리 통신하기 (0) | 2022.01.21 |
---|---|
Kotlin) Failed to find GeneratedAppGlideModule (0) | 2022.01.20 |
Navigation Graph 로 BottomBar 설정하기 (0) | 2022.01.08 |
BottomNavigationView setOnNavigationItemSelectedListener is deprecated (0) | 2022.01.08 |
Retrofit2으로 API 서버와 통신 (0) | 2022.01.02 |
댓글