Git: Delete Branch From Local And Remote Repository
To delete a branch from a local repository:
Then to delete it from the remote repository:
Reference:
http://git-scm.com/docs/git-branch
http://git-scm.com/docs/git-push
git branch -D my_test_branchThen to delete it from the remote repository:
git push origin :my_test_branchorgit push origin --delete my_test_branchReference:
http://git-scm.com/docs/git-branch
http://git-scm.com/docs/git-push
Comments
Post a Comment