Replies: 1 comment
-
Yeah sorry been a bit remiss in versioning and adding stuff to the DONE_TO_DO file |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I use the useful git command:
git describe --tags --always
in my tracking of pysystemtrade. This spits out something like:1.0-758-g31215545
- how about a new tag? The 758 in the previous string denotes commits since tag, so quite a lot of stuff has been committed! You can easily tag on the command line withgit tag 1.1;git push --tags
or something like that.Eventually I will submit a PR for a conda build of pysystemtrade, which would include the above git magic in the name.
Tanks
Beta Was this translation helpful? Give feedback.
All reactions