You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

■ 브랜치 목록 만들기

다음의 명령어로 브랜치 목록을 확인.

# git branch --list
# git branch --all

" * " 는 해당 브랜치가 현재 작업중(체크아웃)을 의미함.

remotes/origin 으로 시작되는 것은 remotes는 로컬이 아닌것을 의미하며,

origin은 기본규약의거, 사본이 여기에서 복제된것을 의미함.


다음의 명령어는 원격 브랜치 목록을 확인.

# git branch --remotes
origin/develop
origin/master


■ remote 브랜치 목록 업데이트

remote 브랜치 목록은 자동으로 갱신 되지 않는다.

목록을 업데이트 하기 위해서는 fetch 명령어를 사용한다.

# git fetch
remote: Counting objects: 27, done.
remote: Compressing objects: 100% (20/20), done.
...





  • No labels