X-Git-Url: http://club.cc.cmu.edu/~cmccabe/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=git-identity.sh;h=30a5757d36dd69d1280a5c395971a3cd4a9d91fa;hb=fd8a5026b904792be8a383e10819121be0d08a76;hp=07cf63d2cec6b597578f65b9799eb070d0299060;hpb=4b1eba6aad43235bb91d8724e0e3c916692ff3af;p=cmccabe-bin diff --git a/git-identity.sh b/git-identity.sh index 07cf63d..30a5757 100755 --- a/git-identity.sh +++ b/git-identity.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # # Configure git identities on a repo-by-repo basis @@ -23,6 +23,10 @@ case $1 in git config user.email cmccabe@alumni.cmu.edu --file || die "${LINENO}" git config user.name "Colin Patrick Mccabe" --file || die "${LINENO}" ;; + apache) + git config user.email cmccabe@apache.org --file || die "${LINENO}" + git config user.name "Colin P. Mccabe" --file || die "${LINENO}" + ;; *) die "${USAGE}" ;;