X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=git-sh-setup.sh;h=6131670860514c215a6b9b7417dd05c3124e81b4;hb=8a1c0d322e9b6963f3be6949475983d517d79796;hp=7a095665d71f153a970243a9d03d919ddef29c88;hpb=4ac23f375f144d06d66d04a5e5323388d6f53251;p=git.git diff --git a/git-sh-setup.sh b/git-sh-setup.sh old mode 100755 new mode 100644 index 7a095665d..613167086 --- a/git-sh-setup.sh +++ b/git-sh-setup.sh @@ -172,6 +172,13 @@ get_author_ident_from_commit () { LANG=C LC_ALL=C sed -ne "$pick_author_script" } +# Clear repo-local GIT_* environment variables. Useful when switching to +# another repository (e.g. when entering a submodule). See also the env +# list in git_connect() +clear_local_git_env() { + unset $(git rev-parse --local-env-vars) +} + # Make sure we are in a valid repository of a vintage we understand, # if we require to be in a git repository. if test -z "$NONGIT_OK"