ROMS 3.7

General scientific issues regarding ROMS

Moderators: arango, robertson

Post Reply
Message
Author
jsouza
Posts: 31
Joined: Tue Apr 10, 2012 10:55 pm
Location: Metocean Solutions

ROMS 3.7

#1 Unread post by jsouza »

I am trying to get the lastest "frozen" version of the ROMS-3.7, as from the message viewtopic.php?t=5266
However, when checking the branches in the ROMS git repository I can only see tags up to the version 3.6. And the master seems to contain the version 3.8.

What is the best way to get access to the this source code?

Cheers

Joao

User avatar
arango
Site Admin
Posts: 1347
Joined: Wed Feb 26, 2003 4:41 pm
Location: DMCS, Rutgers University
Contact:

Re: ROMS 3.7

#2 Unread post by arango »

The frozen versions of ROMS are available only on SVN. Usually, one checkout the tags SVN repository:

svn checkout https://www.myroms.org/svn/src/tags tags
svn checkout https://www.myroms.org/svn/src/tags/roms-3.7 roms-3.7

The GIT repository works in a different way. If you need the version that was tagged as roms-3.7, you may like to check the :arrow: ROMS GIT trac web page and identify the GIT hash that is close to the tagged version that you want. Also, it is easier to just type git log:

Code: Select all

aeolos % git log
commit ef5d653689eff77de5a2302b0a00e2fd840506e4 (HEAD -> master, origin/master, origin/HEAD)
Author: Hernan G. Arango <arango@marine.rutgers.edu>
Date:   Mon Jan 13 17:11:05 2020 -0500

    src:ticket:840

commit 55b59a205c680cba2069f97e73c0d52ad47f8471
Author: Hernan G. Arango <arango@marine.rutgers.edu>
Date:   Fri Jan 10 17:52:17 2020 -0500

    src:ticket:839

commit cc3204d07300c03626edb9791a6befd2daed5729
Author: Hernan G. Arango <arango@marine.rutgers.edu>
Date:   Thu Jan 9 23:59:52 2020 -0500

    src:ticket:837

commit ee6c6c8d516b728bd8268238b620123d0b1c4c0f
Author: Hernan G. Arango <arango@marine.rutgers.edu>
Date:   Thu Jan 9 22:03:38 2020 -0500

    src:ticket:836
and pick-up the commit that you want. There is a lot of information out there for how to pick a version from a git repository.

Post Reply