It would be nice if we can manage a repo that request support from other repo. For example, if you have repo A and hope to use repo B in A, and you hope to get updated with B. Simply use submodules!
First add from remote:
git submodule add https://github.com/user/repoB
git commit -am 'Add submodule B'
git push origin master
Done.
If you hope to clone A with submodule B:
git clone https://github.com/user/repoA
git submodule init
git submodule update
Or simply:
git clone --recurse-submodules https://github.com/user/repoA
If submodule B has been upgraded by the owner, we could simply update A with this modification by:
cd B
git fetch
git merge origin master
pyroms
source repo. conda create -n test_pyroms python=3.8
ReadMe.md
in pyroms
to install libsSCRIP
installation:
makefile
to avoid link to pre-installed netCDF lib/inc by Intel/PGI for model usage, and redirect to anaconda packaged path.netcdf.inc
is not found in conda env path, just copy one from pre-installed netCDF include path.