[core]
	repositoryformatversion = 0
	filemode = true
	bare = false
	logallrefupdates = true
	editor = test -f
[remote "origin"]
	url = git@gitlab.com:zaquestion/test.git
	fetch = +refs/heads/*:refs/remotes/origin/*
[remote "lab-testing"]
        url = git@gitlab.com:lab-testing/test.git
        fetch = +refs/heads/*:refs/remotes/origin/*

[branch "mrtest"]
	remote = lab-testing
	merge = refs/heads/mrtest

# Other formats for testing in internal/git/git_test.go
# https://git-scm.com/docs/git-clone#_git_urls_a_id_urls_a
[remote "origin-http"]
	url = http://gitlab.com/zaquestion/test.git
	fetch = +refs/heads/*:refs/remotes/origin/*
[remote "origin-https"]
	url = https://gitlab.com/zaquestion/test.git
	fetch = +refs/heads/*:refs/remotes/origin/*
[remote "origin-https-token"]
	url = https://token@gitlab.com/zaquestion/test.git
	fetch = +refs/heads/*:refs/remotes/origin/*
[remote "origin-git"]
	url = git://gitlab.com/zaquestion/test.git
	fetch = +refs/heads/*:refs/remotes/origin/*
[remote "origin-ssh-alt"]
	url = ssh://gitlab.com/zaquestion/test.git
	fetch = +refs/heads/*:refs/remotes/origin/*
[remote "origin-no_dot_git"]
	url = git@gitlab.com:zaquestion/test
	fetch = +refs/heads/*:refs/remotes/origin/*
[remote "garbage"]
	url = garbageurl
	fetch = +refs/heads/*:refs/remotes/garbage/*
[remote "origin-subfolder-ssh"]
	url = ssh://gitlab.com/zaquestion/sub/folder/test.git
	fetch = +refs/heads/*:refs/remotes/origin-subfolder-ssh/*
[remote "origin-subfolder-git"]
	url = git@gitlab.com:zaquestion/sub/folder/test.git
	fetch = +refs/heads/*:refs/remotes/origin-subfolder-git/*
[remote "origin-custom-port"]
	url = ssh://git@git.mydomain.net:12345/zaquestion/test.git
	fetch = +refs/heads/*:refs/remotes/origin-custom-port/*
[remote "origin-subfolder-custom-port"]
	url = ssh://git@git.mydomain.net:12345/zaquestion/sub/folder/test.git
	fetch = +refs/heads/*:refs/remotes/origin-subfolder-custom-port/*
[branch "ci_test_pipeline"]
	remote = origin
	merge = refs/heads/ci_test_pipeline
