diff options
author | Anders Kaseorg <andersk@mit.edu> | 2015-02-28 23:18:14 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-03-03 12:07:18 -0800 |
commit | eb32c66e8d02306ac77fa49594652574ec317af3 (patch) | |
tree | 64759ad13eb1aaa02beb2bd2d27231c655ab093d | |
parent | 282616c72d1d08a77ca4fe1186cb708c38408d87 (diff) | |
download | git-eb32c66e8d02306ac77fa49594652574ec317af3.tar.gz git-eb32c66e8d02306ac77fa49594652574ec317af3.tar.xz |
t5516: correct misspelled pushInsteadOf
A future breakage to "git push" to make it incorrectly pay attention
to pushInsteadOf when it should not will be left uncaught without
this change.
Signed-off-by: Anders Kaseorg <andersk@mit.edu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-x | t/t5516-fetch-push.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t5516-fetch-push.sh b/t/t5516-fetch-push.sh index 67e0ab346..393285ac3 100755 --- a/t/t5516-fetch-push.sh +++ b/t/t5516-fetch-push.sh @@ -237,7 +237,7 @@ test_expect_success 'push with pushInsteadOf' ' test_expect_success 'push with pushInsteadOf and explicit pushurl (pushInsteadOf should not rewrite)' ' mk_empty testrepo && test_config "url.trash2/.pushInsteadOf" testrepo/ && - test_config "url.trash3/.pusnInsteadOf" trash/wrong && + test_config "url.trash3/.pushInsteadOf" trash/wrong && test_config remote.r.url trash/wrong && test_config remote.r.pushurl "testrepo/" && git push r refs/heads/master:refs/remotes/origin/master && |