Skip to content

Instantly share code, notes, and snippets.

@anselmdk
Last active March 1, 2017 22:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anselmdk/1a1d2ac9157f1ccd9ae1 to your computer and use it in GitHub Desktop.
Save anselmdk/1a1d2ac9157f1ccd9ae1 to your computer and use it in GitHub Desktop.
Stuff that should go in the .profile file

Git auto completion

_From this SO answer

  1. Download the file to your home directory:
curl https://raw.githubusercontent.com/git/git/master/contrib/completion/git-completion.bash -o ~/.git-completion.bash
  1. Add to your .profile file:
if [ -f ~/.git-completion.bash ]; then
  . ~/.git-completion.bash
fi

Various stuff

Getting around notices when deploying with ttools

export LC_CTYPE=en_US.UTF-8
export LC_ALL=en_US.UTF-8

Other

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment