刪除git的分支
¶刪除git的分支
原文連結: https://darkblack01.blogspot.com/2015/03/git.html
移植時的最後更新日期: 2015-03-25T08:55:40.886+08:00
刪除本地分支
git branch -d <branch name>
刪除遠端分支
git push <repo name> :<branch name>
ex: git push origin :<branch name>
刪除git branch -a的分支
git branch -r -d <remotes branch name>
發表於
tags:
{ Git }