Skip to content

Instantly share code, notes, and snippets.

@danieldraper
Created June 9, 2015 00:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save danieldraper/dabc2dd185bf04678577 to your computer and use it in GitHub Desktop.
Save danieldraper/dabc2dd185bf04678577 to your computer and use it in GitHub Desktop.
Change git author email per directory
function git () {
case "$PWD"; in
/path/to/work/repos/*)
command git -c user.email=you@work.com "$@"
;;
*)
command git "$@"
;;
esac
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment