This folder is a template-folder
, so it's meant to use it as a baisis
for your laTeX project. On github exists a neat way to use a template
folder: use the +
button on github website and then select this repo
as Repository template
.
Git has the ability to tag specific points in a repository’s history as being important ~ Git Official Website ~
-
Create an annotated tag with
git tag -a v1.4 -m "my version 1.4"
(choose a versioning system e.g v0.1 or v0.0.1 ... and be consistent with it!) -
Push the tag with
git push --follow-tags
-
The github server detected the new tag and deoploy a new pdf version in Releases