초보개발자

[Git] branch 관련 command 본문

Git

[Git] branch 관련 command

___yejin 2018. 3. 15. 16:42

git branch 생성

$git branch {new-branch-name}


git checkout 시 branch 바로 생성

$git checkout -b {new-branch-name}


git 현재 branch 이름 수정

$git branch -m {new-branch-name}


git branch 삭제

$git branch -D {new-branch-name}

'Git' 카테고리의 다른 글

[Git] Commit 합치기 (squash)  (0) 2018.02.25
[Git] cmd창에서 처음 시작  (0) 2017.07.05
[Git] git pull 에러  (0) 2017.06.29
[Git] Upload  (0) 2017.06.28
Comments