v?.?.?
: Directories with version (major/minor/trivial update)- symlinks
latest
: to latest version directoryenso
,mean_clim
,mjo
,variability_modes
: to directory under latest directory
index.md
: copy ofindex.md
in thelatest
directory
For example, let's say old: v1.6.1 and new: v1.6.2
cp -r ./v1.6.1 ./v1.6.2
Make change under ./v1.6.2
git add v1.6.2
git rm latest
ln -sf v1.6.2 latest
cp ./latest/index.md .
git commit -am 'update'