Skip to content

Commit

Permalink
Merge branch 'jk/maint-remote-mirror-safer'
Browse files Browse the repository at this point in the history
* jk/maint-remote-mirror-safer:
  remote: allow "-t" with fetch mirrors
  • Loading branch information
Junio C Hamano committed May 31, 2011
2 parents efd02e9 + 3eafdc9 commit 2cd517c
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 2 deletions.
4 changes: 2 additions & 2 deletions builtin/remote.c
Original file line number Diff line number Diff line change
Expand Up @@ -193,8 +193,8 @@ static int add(int argc, const char **argv)

if (mirror && master)
die("specifying a master branch makes no sense with --mirror");
if (mirror && track.nr)
die("specifying branches to track makes no sense with --mirror");
if (mirror && !(mirror & MIRROR_FETCH) && track.nr)
die("specifying branches to track makes sense only with fetch mirrors");

name = argv[0];
url = argv[1];
Expand Down
22 changes: 22 additions & 0 deletions t/t5505-remote.sh
Original file line number Diff line number Diff line change
Expand Up @@ -347,6 +347,21 @@ test_expect_success 'fetch mirrors do not act as mirrors during push' '
)
'

test_expect_success 'add fetch mirror with specific branches' '
git init --bare mirror-fetch/track &&
(cd mirror-fetch/track &&
git remote add --mirror=fetch -t heads/new parent ../parent
)
'

test_expect_success 'fetch mirror respects specific branches' '
(cd mirror-fetch/track &&
git fetch parent &&
git rev-parse --verify refs/heads/new &&
test_must_fail git rev-parse --verify refs/heads/renamed
)
'

test_expect_success 'add --mirror=push' '
mkdir mirror-push &&
git init --bare mirror-push/public &&
Expand Down Expand Up @@ -382,6 +397,13 @@ test_expect_success 'push mirrors do not act as mirrors during fetch' '
)
'

test_expect_success 'push mirrors do not allow you to specify refs' '
git init mirror-push/track &&
(cd mirror-push/track &&
test_must_fail git remote add --mirror=push -t new public ../public
)
'

test_expect_success 'add alt && prune' '
(mkdir alttst &&
cd alttst &&
Expand Down

0 comments on commit 2cd517c

Please sign in to comment.