New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
user/techene/githint (diff) – NEMO

Changes between Version 6 and Version 7 of user/techene/githint


Ignore:
Timestamp:
2021-12-08T17:01:07+01:00 (2 years ago)
Author:
techene
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • user/techene/githint

    v6 v7  
    4141git push 
    4242}}} 
     43 
     44== Create a branch post commit == 
     45{{{ 
     46git clone xxx 
     47git switch main 
     48emacs files.F90 
     49git add file.F90 
     50git commit -m 'comments' 
     51git log  
     52git checkout #sha 
     53git branch MY_BRANCH 
     54git switch MY_BRANCH 
     55git merge main (modified) 
     56git push --set-upstream origin MY_BRANCH 
     57}}}