336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
  • 다 끝나갑니다~ 브랜치 생성과 리스트 조회 브랜치 이동 및 병합, 브랜치 삭제 커맨드!

  • Git branching allows users to experiment with different versions of a project by checking out separate branches to work on.

The following commands are useful in the Git branch workflow.

  • git branch: Lists all a Git project's branches.
  • git branch branch_name: Creates a new branch.
  • git checkout branch_name: Used to switch from one branch to another.
  • git merge branch_name: Used to join file changes from one branch to another.
  • git branch -d branch_name: Deletes the branch specified.


'프로그래밍 > Git' 카테고리의 다른 글

# Git Teamwork  (0) 2016.01.30
# Git 수정 시 필요한 커맨드  (0) 2016.01.29
# Git 커맨드  (0) 2016.01.29

+ Recent posts