diff options
author | Junio C Hamano <gitster@pobox.com> | 2012-07-25 15:47:04 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-07-25 15:47:05 -0700 |
commit | 0d94427ef8442c6b798e60478dfc3e3d3ab16190 (patch) | |
tree | ae0747ff11076c45182144c59d6a7c87a8aca6fb /t/test-lib.sh | |
parent | 7b9f29c40f52084c4e3abf7d2a4212c15aa63ae6 (diff) | |
parent | 22ae029a1e0631570a2db5d030e5755f9be96eee (diff) | |
download | git-0d94427ef8442c6b798e60478dfc3e3d3ab16190.tar.gz |
Merge branch 'mm/config-xdg'
Finishing touches to the XDG support (new feature for 1.7.12) and
tests.
* mm/config-xdg:
t1306: check that XDG_CONFIG_HOME works
ignore: make sure we have an xdg path before using it
attr: make sure we have an xdg path before using it
test-lib.sh: unset XDG_CONFIG_HOME
Diffstat (limited to 't/test-lib.sh')
-rw-r--r-- | t/test-lib.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/t/test-lib.sh b/t/test-lib.sh index acda33d177..5e7f435d51 100644 --- a/t/test-lib.sh +++ b/t/test-lib.sh @@ -61,6 +61,7 @@ unset VISUAL EMAIL LANGUAGE COLUMNS $(perl -e ' my @vars = grep(/^GIT_/ && !/^GIT_($ok)/o, @env); print join("\n", @vars); ') +unset XDG_CONFIG_HOME GIT_AUTHOR_EMAIL=author@example.com GIT_AUTHOR_NAME='A U Thor' GIT_COMMITTER_EMAIL=committer@example.com |