Changes between Version 29 and Version 30 of CollaborateOnGithub


Ignore:
Timestamp:
Oct 16, 2009, 6:34:56 AM (15 years ago)
Author:
mrts
Comment:

Add instructions for deleting a remote branch

Legend:

Unmodified
Added
Removed
Modified
  • CollaborateOnGithub

    v29 v30  
    150150git checkout master
    151151git branch -d has-it-all
     152 }}}
     153
     154=== Deleting a remote branch ===
     155
     156Deleting a remote branch is somewhat unintuitive:
     157 1. Delete the local branch
     158 {{{
     159git checkout master
     160git branch -d ticket1234
     161 }}}
     162 1. Delete the corresponding remote one
     163 {{{
     164git push origin :ticket1234
    152165 }}}
    153166
Back to Top