We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed7bb88 commit 5ef377eCopy full SHA for 5ef377e
README.md
@@ -7,3 +7,16 @@ Physics, Charles University in Prague.
7
It is written in LaTeX. See the `Makefile` on how to build the PDF document.
8
9
The class home page is https://devnull-cz.github.io/unix-linux-prog-in-c/
10
+
11
+# Developer notes
12
13
+## Trigger new release
14
15
+```
16
+# get the latest tag
17
+$ git tag | sed 's/^v//' | sort -n | tail -1
18
+# create new tag
19
+$ git tag v<XYZ>
20
+# push it to the repo
21
+$ git push origin v<XYZ>
22
0 commit comments