about summary refs log tree commit diff
path: root/third_party/git/t/t5513-fetch-track.sh
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/git/t/t5513-fetch-track.sh')
-rwxr-xr-xthird_party/git/t/t5513-fetch-track.sh30
1 files changed, 30 insertions, 0 deletions
diff --git a/third_party/git/t/t5513-fetch-track.sh b/third_party/git/t/t5513-fetch-track.sh
new file mode 100755
index 0000000000..65d1e05bd6
--- /dev/null
+++ b/third_party/git/t/t5513-fetch-track.sh
@@ -0,0 +1,30 @@
+#!/bin/sh
+
+test_description='fetch follows remote-tracking branches correctly'
+
+. ./test-lib.sh
+
+test_expect_success setup '
+	>file &&
+	git add . &&
+	test_tick &&
+	git commit -m Initial &&
+	git branch b-0 &&
+	git branch b1 &&
+	git branch b/one &&
+	test_create_repo other &&
+	(
+		cd other &&
+		git config remote.origin.url .. &&
+		git config remote.origin.fetch "+refs/heads/b/*:refs/remotes/b/*"
+	)
+'
+
+test_expect_success fetch '
+	(
+		cd other && git fetch origin &&
+		test "$(git for-each-ref --format="%(refname)")" = refs/remotes/b/one
+	)
+'
+
+test_done