git popped up with Xcode so installed, so installed that however
bash-3.2# git --version
git version 1.9.3 (Apple Git-50)
but latest version is 2.2.1
bash-3.2# cd /usr/bin
bash-3.2# ls -l git*
-rwxr-xr-x 1 root wheel 14160 29 Sep 06:38 git… more »
Category: "Source Control"
There are many ways to get history information out of git. Special thanks to Hannes Schneidermayer for this one. git log --pretty="%C(Yellow)%h %C(reset)%ad (%C(Green)%cr%C(reset))%x09 %C(Cyan)%an: %C(reset)%s" By far the easiest thing to do is to… more »
Kdiff3 has been my favourite diff tool for a while and I always have to look up how to configure it to be automatically launched when using Git from the command line. So it's going in the blog! For Linux sudo apt-get update sudo apt-get install kdiff3… more »
I always think that using SVN is like using a really broken version of git. The fact that SVN allows you to checkout part of a tree and thus have any folder as the root of your source controller encourages developers to hack solutions which is probably… more »