https://mwm2026.github.io/cmr-multi
# install uv (per user)
curl -LsSf https://astral.sh/uv/install.sh | sh
# install datalad (per user)
uv tool install datalad
# setup git (if not already done)
git config --global user.email "your.mail@uni-wuerzburg.de"
git config --global user.name "Your Name"
# download project repo
datalad clone http://132.187.198.63:3000/iimog/cmr-multi
# or per ssh (need to configure ssh key first but makes later pushing more convenient)
#datalad clone ssh://git@132.187.198.63:222/iimog/cmr-multi cmr-ssh
# get the actual data
cd cmr-multi
datalad get data
# make changes and then
datalad save -m "Your commit message"
# this might ask for your credentials multiple times if cloned via http
datalad push