刪除近端與遠端的 Git 分支.

To delete a local branch

git branch -D the_local_branch

To remove a remote branch

git push origin :the_remote_branch

or

git push origin --delete the_remote_branch


Comments

comments powered by Disqus