Add a man page.
[inoclam.git] / HACKING
blob88d5f681f4cd1e1639813221356d241dc9153143
1 Hacking inoclam
2 ===============
4 git cheat sheet
5 ---------------
7 pushing changes to the public repository
8 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
10 $ git push git+ssh://repo.or.cz/srv/git/inoclam.git master
12 tagging a release
13 ~~~~~~~~~~~~~~~~~
15 $ git tag -a 1.1.0
16 Version 1.1.0 (Flexo)
18 pushing the tag to the public repository
19 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
21 $ git push git+ssh://repo.or.cz/srv/git/inoclam.git 1.1.0
23 creating a release tarball
24 ~~~~~~~~~~~~~~~~~~~~~~~~~~
26 $ git archive --format=tar --prefix=inoclam-1.1.0/ 1.1.0 | gzip > inoclam-1.1.0.tar.gz