본문 바로가기
Tools for Dev

GIT branch 삭제 : local branch & remote branch

by leanu 2019. 11. 30.

Local Branch 삭제


$ git branch -d <branch_name>

 

 

 

Remote Branch 삭제


$ git push -d <remote_name> <branch_name>

보통 remote_name은 origin 을 사용하므로 아래의 형태가 될 것이다.

 

$ git push -d origin <branch_name>

 

'Tools for Dev' 카테고리의 다른 글

A successful git branching model in GIT - GIT 브렌치의 효율적인 운영방안에 대한 고찰  (1) 2023.05.09
Make 에 대한 모든 것  (0) 2023.05.09
iTerm Tips  (0) 2014.07.03
Yeoman Troubleshooting  (0) 2014.05.30
HDFS Errors  (0) 2013.07.15

댓글