Changes between Version 26 and Version 27 of CollaborateOnGithub
- Timestamp:
- Oct 8, 2009, 5:23:03 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CollaborateOnGithub
v26 v27 172 172 To abort the rebase, just remove all non-commented lines. 173 173 174 You may need to use `--force` to push changes back to !GitHub 174 If something went wrong during rebase and you want to undo the rebase: 175 176 1. Find out the state identifier before the rebase: 177 {{{ 178 git reflog 179 }}} 180 1. Switch back to that state 181 {{{ 182 git reset --hard HEAD@{NUMBER_FROM_REFLOG_HERE} 183 }}} 184 185 This works for all other similar problems as well, e.g. for backing out a merge. 186 187 You will probably need to use `--force` to push changes back to !GitHub 175 188 {{{ 176 189 git push --force 177 190 }}} 178 179 If something went wrong during rebase and you want to undo the rebase:180 181 1. Find out the state identifier before the rebase:182 {{{183 git reflog184 }}}185 1. Switch back to that state186 {{{187 git reset --hard HEAD@{NUMBER_FROM_REFLOG_HERE}188 }}}189 190 This works for all other similar problems as well, e.g. for backing out a merge.191 191 192 192 == Collaboration on a large feature ==