to increase reproducibility and human readability it would be great to tag commits with versions of the software.
When I pull the latest commit, the version/commit is not human readable and not sortable.
This could work:
git clone https://github.com/antoinefalisse/predsim_tutorial
cd opensimAD
git log --graph --oneline # choose commit to tag
git checkout 140360f # 140360f is the chosen commit
git tag v1.0.0
git push origin --tags
It would be greatly appreciated if you could tag previous versions and/or the latest version (see [this stackoverflow answer](https://stackoverflow.com/questions/18216991/create-a-tag-in-a-github-repository/18223354#18223354) for more info).
Hi,
to increase reproducibility and human readability it would be great to tag commits with versions of the software. When I pull the latest commit, the version/commit is not human readable and not sortable.
This could work:
Thanks