Skip to content

Instantly share code, notes, and snippets.

View bslagter's full-sized avatar

Bert Slagter bslagter

  • LekkerCryptisch
View GitHub Profile

Keybase proof

I hereby claim:

  • I am bslagter on github.
  • I am bslagter (https://keybase.io/bslagter) on keybase.
  • I have a public key whose fingerprint is 52E6 E49E B3D9 71E6 5826 F21F 801C B25E AEFD 58FA

To claim this, I am signing this object:

@bslagter
bslagter / .gitconfig
Last active November 18, 2015 07:27
Use PhpStorm as difftool for review of feature branches
[alias]
phpstorm-review = "!f_checkout() { local SHA=${1:-HEAD}; local BRANCH=${2:-master}; if [ $SHA == $BRANCH ]; then SHA=HEAD; fi; git difftool -d -t phpstorm $BRANCH...$SHA; }; f_checkout"
[difftool "phpstorm"]
cmd = ~/git/viewInPhpStorm.sh diff \"$LOCAL\" \"$REMOTE\"