Diff Tool
You can use you Console or edit the config file directly. Either will work.
IN GIT
Run this:
git config --global diff.tool subl
("l" is and lowercase L)
Then run this:
git config --global difftool.subl.cmd "subl --wait --diff $LOCAL $REMOTE"
OR
Add to the Config file in your Git directory.
[diff]
tool = subl
[difftool "subl"]
cmd = "subl --wait --diff $LOCAL $REMOTE"
Default editor
git config --global core.editor "/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl" /usr/local/bin/subl