Skip to content

Instantly share code, notes, and snippets.

View qmachard's full-sized avatar
🥁
Code 'n' Roll !

Quentin Machard qmachard

🥁
Code 'n' Roll !
View GitHub Profile
@qmachard
qmachard / .gitconfig
Created August 8, 2022 12:17
GIT Aliases
[alias]
dm = "!git branch --merged | grep -v '\\*' | xargs -n 1 git branch -d"
@qmachard
qmachard / .gitconfig
Last active May 31, 2022 07:17 — forked from jvandyke/.gitconfig
Use PHPStorm/WebStorm for git diff and merge tools
# ~/.gitconfig
# Add this to your global git configuration file
# Change phpstorm to webstorm, if you use that.
# Diff and merge tool changes
# Run `git difftool <directory/file>...` or `git mergetool <directory/file>...`
[merge]
tool = phpstorm
[diff]
tool = phpstorm