antoinefalisse / predsim_tutorial

Apache License 2.0
16 stars 5 forks source link

Versioning: please tag versions/commits #7

Open jowodo opened 8 months ago

jowodo commented 8 months ago

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:

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).

Thanks