Changes between Version 29 and Version 30 of CollaborateOnGithub
- Timestamp:
- Oct 16, 2009, 6:34:56 AM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CollaborateOnGithub
v29 v30 150 150 git checkout master 151 151 git branch -d has-it-all 152 }}} 153 154 === Deleting a remote branch === 155 156 Deleting a remote branch is somewhat unintuitive: 157 1. Delete the local branch 158 {{{ 159 git checkout master 160 git branch -d ticket1234 161 }}} 162 1. Delete the corresponding remote one 163 {{{ 164 git push origin :ticket1234 152 165 }}} 153 166