Add permanent mode to git as

This commit is contained in:
Talia 2024-09-10 09:20:23 +02:00
parent 6b0138881c
commit 06bc34e586
1 changed files with 15 additions and 6 deletions

View File

@ -1,9 +1,18 @@
#!/bin/sh
user=$1
shift 1
if [ -z "$@" ]
then
# Run as `eval $(git as identity)` or prepend with git command
echo export GIT_AUTHOR_NAME="'$(git config user.$user.name)'"
echo export GIT_AUTHOR_EMAIL="'$(git config user.$user.email)'"
echo export GIT_COMMITTER_NAME="'$(git config user.$user.name)'"
echo export GIT_COMMITTER_EMAIL="'$(git config user.$user.email)'"
else
export GIT_AUTHOR_NAME="$(git config user.$user.name)"
export GIT_AUTHOR_EMAIL="$(git config user.$user.email)"
export GIT_COMMITTER_NAME="$(git config user.$user.name)"
export GIT_COMMITTER_EMAIL="$(git config user.$user.email)"
echo "Running as $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL>"
git "$@"
fi