How do I delete a Git branch locally and remotely?
What is the best way to delete a branch both locally and remotely?
1617 views
โค๏ธ
1
What is the best way to delete a branch both locally and remotely?
1617 views
You can delete a remote branch using the following command:
$ git push <remote_name> --delete <branch_name>