Changes between Version 118 and Version 119 of DeveloperGuidelines/Git
- Timestamp:
- 02/01/17 10:34:30 (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines/Git
v118 v119 378 378 If you need a specific revision of the current branch, your can check out that revision on a new branch: 379 379 {{{ 380 git checkout -b < revision> <branch_name>380 git checkout -b <branch_name> <revision> 381 381 }}} 382 382 (git requires a name for a branch if you want to preserve commits.)