summaryrefslogtreecommitdiff
path: root/t/t9134-git-svn-ignore-paths.sh
diff options
context:
space:
mode:
authorBen Jackson <ben@ben.com>2009-04-11 17:46:18 (GMT)
committerEric Wong <normalperson@yhbt.net>2009-04-12 00:55:37 (GMT)
commit88ec205477e18e612ab854f20ef87aa244b8debe (patch)
tree00a572f0cffbbf8065e8c5fefed99fd16c4c17b9 /t/t9134-git-svn-ignore-paths.sh
parent0d8bee71af1cda3d13d896c210773216dcf87b7c (diff)
downloadgit-88ec205477e18e612ab854f20ef87aa244b8debe.zip
git-88ec205477e18e612ab854f20ef87aa244b8debe.tar.gz
git-88ec205477e18e612ab854f20ef87aa244b8debe.tar.bz2
git-svn: Save init/clone --ignore-paths in config
The --ignored-paths argument is now stored as "svn-remote.$REMOTE_NAME.ignore-paths" in the config file. [ew: edited subject and message] Signed-off-by: Ben Jackson <ben@ben.com> Acked-by: Eric Wong <normalperson@yhbt.net>
Diffstat (limited to 't/t9134-git-svn-ignore-paths.sh')
-rwxr-xr-xt/t9134-git-svn-ignore-paths.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t9134-git-svn-ignore-paths.sh b/t/t9134-git-svn-ignore-paths.sh
index b9a1597..71fdc4a 100755
--- a/t/t9134-git-svn-ignore-paths.sh
+++ b/t/t9134-git-svn-ignore-paths.sh
@@ -40,10 +40,10 @@ test_expect_success 'init+fetch an SVN repository with ignored www directory' '
test_cmp expect expect2
'
-test_expect_success 'set persistent ignore-paths config' '
+test_expect_success 'verify ignore-paths config saved by clone' '
(
cd g &&
- git config svn-remote.svn.ignore-paths "^www"
+ git config --get svn-remote.svn.ignore-paths | fgrep "www"
)
'