mirror of
https://github.com/jayphelps/git-blame-someone-else.git
synced 2025-04-30 02:26:22 +02:00
Merge 6ad3acbec4
into 8d854c2d78
This commit is contained in:
commit
c406902261
1 changed files with 3 additions and 3 deletions
|
@ -1,17 +1,17 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
if [ $# -ne 2 ]; then
|
||||
>&2 echo "Usage: $0 <author> <commit>"
|
||||
>&2 echo "Usage: $(basename $0) <author> <commit>"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
AUTHOR=$1
|
||||
AUTHOR_NAME=$(echo $AUTHOR | perl -wlne '/^(.*?)\s*<.*>$/ and print $1')
|
||||
AUTHOR_NAME=$(echo $AUTHOR | perl -wlne '/^([^<]+).*>$/ and print $1')
|
||||
AUTHOR_EMAIL=$(echo $AUTHOR | perl -wlne '/^.*\s*<(.*)>$/ and print $1')
|
||||
COMMIT=$(git rev-parse --short $2)
|
||||
|
||||
{
|
||||
GIT_SEQUENCE_EDITOR="sed -i -e 's/^pick $COMMIT/edit $COMMIT/'" git rebase -i $COMMIT~1^^
|
||||
GIT_SEQUENCE_EDITOR="sed -i -e 's/^pick $COMMIT/edit $COMMIT/'" git rebase -i $COMMIT~1^^
|
||||
GIT_COMMITTER_NAME="$AUTHOR_NAME" GIT_COMMITTER_EMAIL="$AUTHOR_EMAIL" git commit --amend --no-edit --author="$AUTHOR"
|
||||
git rebase --continue
|
||||
} &> /dev/null
|
||||
|
|
Loading…
Add table
Reference in a new issue