Create a repository on GitLab
Clone repo
git clone git@gitlab.com:group/repo.gitgit clonne https://gitlab.com/acbg/repo.gitgit clone ~/repo.gitInit annex
cd repo; git annex init 'description of the annex'Copy, remove, modify files
Add files…
git annex add .…and commit
git commit -m 'Initial commit'Change filenames or modify archives
git mv ab.jpg a.jpgCommit again
git commit -m 'Changed file name'Sync master and git-annex branches, not files content
git push origin master git-annexSync file contents
git annex sync --content
Another checkout, other location
Clone the repo
git clone git@gitlab.com:group(or login)/repo.gitEnter the repo
cd repoInit a new annex
git annex init 'location'Get files
Get one file
git annex get debian.isoGet all the content
git annex sync --content