summaryrefslogtreecommitdiff
path: root/.gitconfig
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2016-08-17 20:19:57 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2016-08-17 20:19:57 -0400
commitf6fb0e626c492d854f21f3f91cefd288bd21d346 (patch)
treeeb0a3fcb6932b1d07a1598c2d9d9d607864cfc0c /.gitconfig
parent50b1e92bb07c296befdaa3d0d9158882bd3e1146 (diff)
better git ref names
Diffstat (limited to '.gitconfig')
-rw-r--r--.gitconfig49
1 files changed, 49 insertions, 0 deletions
diff --git a/.gitconfig b/.gitconfig
new file mode 100644
index 0000000000..4741c89385
--- /dev/null
+++ b/.gitconfig
@@ -0,0 +1,49 @@
+[remote "r-systemd"]
+ url = https://github.com/systemd/systemd.git
+ tagopt = --no-tags
+ fetch = +refs/heads/*:refs/remotes/r-systemd/*
+ fetch = +refs/tags/*:refs/tags/systemd/*
+[branch "systemd/master"]
+ remote = r-systemd
+ merge = refs/heads/master
+
+[remote "r-elogind"]
+ url = https://github.com/wingo/elogind.git
+ tagopt = --no-tags
+ fetch = +refs/heads/*:refs/remotes/r-elogind/*
+ fetch = +refs/tags/*:refs/tags/elogind/*
+[branch "elogind/master"]
+ remote = r-elogind
+ merge = refs/heads/master
+
+[remote "r-eudev"]
+ url = https://github.com/gentoo/eudev.git
+ tagopt = --no-tags
+ fetch = +refs/heads/*:refs/remotes/r-eudev/*
+ fetch = +refs/tags/*:refs/tags/eudev/*
+[branch "eudev/master"]
+ remote = r-eudev
+ merge = refs/heads/master
+
+[remote "r-parabola"]
+ url = https://git.parabola.nu/~lukeshu/systemd.git
+ pushUrl = ssh://git@git.parabola.nu/~git/~lukeshu/systemd.git
+ tagopt = --no-tags
+ fetch = +refs/heads/*:refs/remotes/r-parabola/*
+[branch "systemd/parabola"]
+ remote = r-parabola
+ merge = refs/heads/systemd/parabola
+[branch "notsystemd/premove"]
+ remote = r-parabola
+ merge = refs/heads/notsystemd/premove
+[branch "notsystemd/postmove"]
+ remote = r-parabola
+ merge = refs/heads/notsystemd/postmove
+[branch "notsystemd/master"]
+ remote = r-parabola
+ merge = refs/heads/notsystemd/postmove
+
+[remote "r-autothing"]
+ url = git://lukeshu.com/autothing
+ tagopt = --no-tags
+ fetch = +refs/heads/*:refs/remotes/r-autothing/*