Add directory_merge.go
[cmccabe-bin] / git-identity.sh
index 07cf63d..30a5757 100755 (executable)
@@ -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}"
         ;;