Friday, July 21, 2017

Deleting a remote branch using command line Git

Deleting a remote branch using command line Git


If you are familiar with GitHub UI after browsing branches tab you can simply delete a branch(If you have relevant permissions).


Lets see how we do the same using command line.
git push <REMOTE_NAME> :<BRANCH_NAME>
Note the space between remote name and the colon. By following this syntax you are asking git to push nothing hence git push will delete the branch in remote repository.

Eg:-
udara@udara-home:~/workspace/h2-social-adaptor$ git push origin :v2
To git@github.com:udarakr/h2-social-adaptor.git
 - [deleted]         v2


download more info

No comments:

Post a Comment