mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-11-11 16:09:57 +03:00
17 lines
266 B
Bash
Executable File
17 lines
266 B
Bash
Executable File
#!/bin/sh
|
|
|
|
usage() {
|
|
echo "usage: $0 sha name email"
|
|
exit 1
|
|
}
|
|
|
|
if [ ! $3 ]; then
|
|
usage
|
|
fi
|
|
|
|
git filter-branch -f --env-filter "
|
|
export GIT_AUTHOR_NAME='$2'
|
|
export GIT_AUTHOR_EMAIL='$3'
|
|
export GIT_COMMITTER_NAME='$2'
|
|
export GIT_COMMITTER_EMAIL='$3'
|
|
" -- $1..HEAD |