Skip to content

Commit 5ef377e

Browse files
author
Vladimir Kotal
committed
on tags
1 parent ed7bb88 commit 5ef377e

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,16 @@ Physics, Charles University in Prague.
77
It is written in LaTeX. See the `Makefile` on how to build the PDF document.
88

99
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

Comments
 (0)