Changes between Version 42 and Version 43 of DeveloperGuidelines/Git


Ignore:
Timestamp:
04/13/12 18:20:20 (13 years ago)
Author:
Fran Boon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperGuidelines/Git

    v42 v43  
    124124This resets your branch N previous commits removing both history and changes to the file ever since.
    125125 
     126To remove commit from GitHub:
     127{{{
     128# Rebase locally (this allows you to remove the last commit)
     129git rebase -i HEAD~2
     130# Force update of GitHub
     131git push origin +master
     132}}}
    126133=== Creating a 2nd branch ===
    127134If you wish to have multiple separate branches to work on, you can run these as separate web2py applications