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

Merge pull request #7 from anchal20/master

tip for deleting a local or remote branch
This commit is contained in:
hemanth.hm 2015-07-15 19:03:16 +05:30
commit abb579e995

View File

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