]> rtime.felk.cvut.cz Git - git.git/blobdiff - git-sh-setup.sh
Merge branch 'sp/maint-dumb-http-pack-reidx'
[git.git] / git-sh-setup.sh
old mode 100755 (executable)
new mode 100644 (file)
index 7a09566..6131670
@@ -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"