Merge pull request #9 from anchal20/master

tip for deleting a local or remote branch
This commit is contained in:
hemanth.hm 2015-07-15 20:06:47 +05:30
commit 819e1550df
1 changed files with 8 additions and 0 deletions

View File

@ -34,5 +34,13 @@
{
"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"
}
]