summaryrefslogtreecommitdiff
path: root/.gitconfig
blob: 4bf35862eb38f0588cfc67037727ed9adc571fe8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# -*- Mode: Conf -*-

[remote "r-systemd"]
	url = https://github.com/systemd/systemd.git
	fetch = +refs/heads/*:refs/remotes/r-systemd/*
	# There are two tag formats coming from r-systemd:
	#  - vXXX: systemd versions
	#  - XXX: (001-182) udev versions, from before the
	#    systemd/udev merge
	# Let's put them each in their own namespace.
	tagopt = --no-tags
	fetch = +refs/tags/v*:refs/tags/systemd/v*
	fetch = +refs/tags/0*:refs/tags/udev/v0*
	fetch = +refs/tags/1*:refs/tags/udev/v1*
[branch "systemd/master"]
	remote = r-systemd
	merge = refs/heads/master

[remote "r-elogind"]
	url = https://github.com/wingo/elogind.git
	fetch = +refs/heads/*:refs/remotes/r-elogind/*
	# There are 3 tag formats coming from r-elogind:
	#  - XXX: legacy udev tags
	#  - vXXX: upstream systemd tags
	#  - vXXX.Y: elogind versions
	# Unfortunately, git gives us no good way of filtering to only
	# get tags containing a `.`
	tagopt = --no-tags
	fetch = +refs/tags/v*:refs/tags/elogind/v*
[branch "elogind/master"]
	remote = r-elogind
	merge = refs/heads/master

[remote "r-eudev"]
	url = https://github.com/gentoo/eudev.git
	fetch = +refs/heads/*:refs/remotes/r-eudev/*
	# Similarly to how we have done, r-eudev has mapped systemd
	# tags to `systemd-vXXX` and legacy udev tags to `udev-XXX`.
	# The eudev tags are typically `vX.Y.Z`, but several of them
	# are just `X.Y.Z`.  Fortunately 1.5.* are the only ones
	# without a vX.Y.Z tag; the other has both forms.
	tagopt = --no-tags
	fetch = +refs/tags/v*:refs/tags/eudev/v*
	fetch = +refs/tags/1*:refs/tags/eudev/v1*
[branch "eudev/master"]
	remote = r-eudev
	merge = refs/heads/master

[remote "origin"]
	url = https://git.parabola.nu/~lukeshu/systemd.git
	pushUrl = ssh://git@git.parabola.nu/~git/~lukeshu/systemd.git
	fetch = +refs/heads/*:refs/remotes/origin/*
	tagopt = --no-tags
	fetch = +refs/tags/*:refs/tags/*
[branch "systemd/parabola"]
	remote = origin
	merge = refs/heads/systemd/parabola
[branch "notsystemd/premove"]
	remote = origin
	merge = refs/heads/notsystemd/premove
[branch "notsystemd/postmove"]
	remote = origin
	merge = refs/heads/notsystemd/postmove
[branch "notsystemd/master"]
	remote = origin
	merge = refs/heads/notsystemd/master

[remote "r-autothing"]
	url = git://lukeshu.com/autothing
	tagopt = --no-tags
	fetch = +refs/heads/*:refs/remotes/r-autothing/*