Changes between Version 9 and Version 10 of user/techene/githint
- Timestamp:
- 2022-01-10T18:30:57+01:00 (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
user/techene/githint
v9 v10 18 18 19 19 == Useful commands == 20 git-checkout21 {{{22 git checkout MY_BRANCH - Switch branches or23 git checkout old_commited_files.F90 restore working tree files24 https://git-scm.com/docs/git-checkout25 }}}26 20 27 21 git-restore … … 37 31 Deleted branch debug_rk3 (was 63a26b2). 38 32 git checkout -b debug_rk3 63a26b2 - Retrieve the branch deleted 33 }}} 34 35 git-reset 36 {{{ 37 git reset #sha - come back to former state of the branch useful when you want to cancel a commit 38 }}} 39 40 git-checkout ??? 41 {{{ 42 git checkout MY_BRANCH - Switch branches [deprecated] 43 git checkout old_commited_files.F90 restore working tree file [deprecated] 44 https://git-scm.com/docs/git-checkout 39 45 }}} 40 46 == Process ==