rocketparts.org

all you need to code a rocket

15 April 2012 ~ 0 Comments

hg graft: merge single changes between branches without merging branches

hg graft: Merge single changes between branches without merging branches If you have to support two development lines in the form of coexistent branches probaly you come to a point where you have to copy a change from one branch to the other ones without merging the branches (cherry-picking). Since Mercurial 2.0 you can use [...]

01 March 2012 ~ 0 Comments

How to add a copyright to your source files?

You can easy use the http://code.google.com/p/maven-license-plugin/. Here is a tiny example: http://www.rocketparts.org/snippets/maven-license-plugin.xml Use mvn license:check to verify and mvn license:format to generate the header

Tags: ,

15 June 2010 ~ 0 Comments

How to recursive create md5sum for a directory?

find theDirectory -type f -print0 | xargs -0 md5sum >> file.md5