t5541: use test_config to set/unset git config variables
commit8677b777a57e1d843d4aef2d5a12f3cd9ccb7609
authorYann Droneaud <ydroneaud@opteya.com>
Sun, 24 Mar 2013 21:06:08 +0000 (24 22:06 +0100)
committerJunio C Hamano <gitster@pobox.com>
Mon, 25 Mar 2013 15:50:53 +0000 (25 08:50 -0700)
treeb8468db306bc82208cd1e8fbf0cf1fc8d2e22676
parent9d6aa64dc32b5f1b87c480eaffb8b4bb9aa10c64
t5541: use test_config to set/unset git config variables

Instead of using construct such as:
    test_when_finished "git config --unset <key>"
    git config <key> <value>
uses
    test_config <key> <value>
The latter takes care of removing <key> at the end of the test.

Signed-off-by: Yann Droneaud <ydroneaud@opteya.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t5541-http-push.sh