Changes between Version 42 and Version 43 of DeveloperGuidelines/Git
- Timestamp:
- 04/13/12 18:20:20 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines/Git
v42 v43 124 124 This resets your branch N previous commits removing both history and changes to the file ever since. 125 125 126 To remove commit from GitHub: 127 {{{ 128 # Rebase locally (this allows you to remove the last commit) 129 git rebase -i HEAD~2 130 # Force update of GitHub 131 git push origin +master 132 }}} 126 133 === Creating a 2nd branch === 127 134 If you wish to have multiple separate branches to work on, you can run these as separate web2py applications