1. 로컬 브랜치 조회
git branch
2. 원격 브랜치 조회
git branch -r
3. 모든 브랜치 조회 (로컬 + 원격)
git branch -a
4. 원격 브랜치 참조 업데이트
git remote prune origin
5. 로컬 브랜치 참조 업데이트
git fetch -p
'여니의 프로그래밍 study > Github' 카테고리의 다른 글
[Git] commit 삭제하는 방법 (0) | 2022.03.03 |
---|---|
[Git] failed to push some refs to '...git' 오류 해결 (0) | 2022.03.03 |
Github 오류 | fatal: Exiting because of an unresolved conflict. (0) | 2021.04.23 |
Github commit 조회하기 (0) | 2021.04.23 |
[Github Error #1] error: Pulling is not possible because you have unmerged files. (0) | 2021.04.14 |