Changes between Version 118 and Version 119 of DeveloperGuidelines/Git


Ignore:
Timestamp:
02/01/17 10:34:30 (8 years ago)
Author:
Fran Boon
Comment:

correction

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperGuidelines/Git

    v118 v119  
    378378If you need a specific revision of the current branch, your can check out that revision on a new branch:
    379379{{{
    380 git checkout -b <revision> <branch_name>
     380git checkout -b <branch_name> <revision>
    381381}}}
    382382(git requires a name for a branch if you want to preserve commits.)