- Prune local branches: `git fetch -p` -- git fetch -p ; git branch -r | awk '{print $1}' | egrep -v -f /dev/fd/0 <(git branch -vv | grep origin) | awk '{print $1}' | xargs git branch -d - start maintenance: `git maintenance start` - 'real blame': `git blame -w -C -C -C` equivalent in intellij (not really sure it's completely equivalent, maybe it's just -C -C) image MAN: In addition to -M, detect lines moved or copied from other files that were modified in the same commit. This is useful when you reorganize your program and move code around across files. When this option is given twice, the command additionally looks for copies from other files in the commit that creates the file. When this option is given three times, the command additionally looks for copies from other files in any commit.