1
0
mirror of https://github.com/namibia/tips.git synced 2024-06-02 18:31:07 +00:00

tip for deleting a local or remote branch

This commit is contained in:
Anchal 2015-07-15 20:00:26 +05:30
parent 8c45240d89
commit 7db7aae79b

View File

@ -34,11 +34,11 @@
{ {
"title": "Track upstream branch", "title": "Track upstream branch",
"tip": "git branch -u origin/mybranch" "tip": "git branch -u origin/mybranch"
} },
{ {
"title": "Delete local branch", "title": "Delete local branch",
"tip": "git branch -d local_branchname" "tip": "git branch -d local_branchname"
} },
{ {
"title": "Delete remote branch", "title": "Delete remote branch",
"tip": "git push origin :remote_branchname" "tip": "git push origin :remote_branchname"