From efb6ae47b70201b93b10f8d41f5ca6eb9f0d9e6e Mon Sep 17 00:00:00 2001 From: Tom Cort Date: Mon, 10 Dec 2007 19:54:15 -0500 Subject: [PATCH] Add a cheat sheet for inoclam developers. --- HACKING | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 HACKING diff --git a/HACKING b/HACKING new file mode 100644 index 0000000..6a69154 --- /dev/null +++ b/HACKING @@ -0,0 +1,21 @@ +Hacking inoclam +=============== + +git cheat sheet +--------------- + +pushing changes to the public repository +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +$ git push git+ssh://repo.or.cz/srv/git/inoclam.git master + +tagging a release +~~~~~~~~~~~~~~~~~ + +$ git tag -a 1.1.0 +Version 1.1.0 (Flexo) + +creating a release tarball +~~~~~~~~~~~~~~~~~~~~~~~~~~ + +$ git archive --format=tar --prefix=inoclam-1.1.0/ 1.1.0 | gzip inoclam-1.1.0.tar.gz -- 2.11.4.GIT