Month: February 2014

GIT TIP – Push Only the Current Branch

Are you tired of always have to tell GIT which remote branch to push and not accidentally pushing all branches? You can actually tell GIT to only push the current branch to another branch with the same name:git config...

Read More

Test for equal is not always equals in Java

I ran into a bug at the customer, which reminded me that there are still confusion about how to compare objects and specially Strings in Java.You can use several methods to compare objects, == test references and .equals for...

Read More