-
Notifications
You must be signed in to change notification settings - Fork 1
/
change_authors.sh
executable file
·36 lines (32 loc) · 1.75 KB
/
change_authors.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/bin/sh
git filter-branch --env-filter '
n=$GIT_AUTHOR_NAME
m=$GIT_AUTHOR_EMAIL
case ${GIT_AUTHOR_NAME} in
"ILE") n="isabelle-lenain" ; m="[email protected]" ;;
"PLE") n="pierrelevy" ; m="[email protected]" ;;
"JHA") n="Jon Harper" ; m="[email protected]" ;;
"JGO") n="jgoulley" ; m="[email protected]" ;;
"EJO") n="elysajouve" ; m="[email protected]" ;;
"LHO") n="hohll" ; m="[email protected]" ;;
"FME") n="FrancoisEricMerlin" ; m="[email protected]" ;;
"LLI") n="l-lin" ; m="[email protected]" ;;
"TLA") n="tla-dev" ; m="[email protected]" ;;
"RZA") n="rzara" ; m="[email protected]" ;;
"PVN") n="varin-pierre" ; m="[email protected]" ;;
"MEV") n="evrard-maxime" ; m="[email protected]" ;;
"MPR") n="MPROUX" ; m="[email protected]" ;;
"ADU") n="adrien-duchemin" ; m="[email protected]" ;;
"ESO") n="esouquet" ; m="[email protected]" ;;
"NMO") n="NMO-SOPRA" ; m="[email protected]" ;;
"VVO") n="V-V-" ; m="[email protected]" ;;
"VBR") n="vbroussard" ; m="[email protected]" ;;
"VNO") n="vashista" ; m="[email protected]" ;;
"AVA") n="arthur-vary-sinamale" ; m="[email protected]" ;;
"JCH") n="jchaline" ; m="[email protected]" ;;
esac
export GIT_AUTHOR_NAME="$n"
export GIT_AUTHOR_EMAIL="$m"
export GIT_COMMITTER_NAME="$n"
export GIT_COMMITTER_EMAIL="$m"
'