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

Compare with Current View Page History

Version 1 Next »

■ 브랜치 목록 만들기

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

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

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

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

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


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

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





  • No labels