Git supports auto-completion when used via the terminal, which includes all basic commands such as git status or git checkout as well as local and remote branch names etc. It comes pre-installed on Ubuntu, but a few simple steps (bellow) have to be followed to get it working on Mac. Open up your terminal app […]
Archives for July 2016
How to Remove Shell Integration From iterm2
I tried shell integration for iterm2 and I didn’t like it. I wasn’t sure how to remove it, so I looked into the install script. #!/bin/bash function die() { echo “${1}” exit 1 } which printf > /dev/null 2>&1 || die “Shell integration requires the printf binary to be in your path.” SHELL=$(echo “${SHELL}” | […]