From 9907fb3cc9e73dade56913e4c82ec7ea6214206b Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Tue, 27 Nov 2012 21:31:41 -0500 Subject: add some documentation files --- README | 9 +++++++++ gitconfig | 17 +++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 README create mode 100644 gitconfig diff --git a/README b/README new file mode 100644 index 0000000..b305105 --- /dev/null +++ b/README @@ -0,0 +1,9 @@ +This is a minimal fork of Arch's `devtools'. + +It is a fork in that bugs are fixed and features added. + This happens on the "complete" branch. Most development should happen here, + and it should be able to be merged back into devtools. +It is minimal in that it doesn't include most of what is in devtools. + This happens on the "master" branch. + +a sample .git/config file is included to make it easy to merge from devtools. diff --git a/gitconfig b/gitconfig new file mode 100644 index 0000000..890a5d0 --- /dev/null +++ b/gitconfig @@ -0,0 +1,17 @@ +[core] + repositoryformatversion = 0 + filemode = true + bare = false + logallrefupdates = true +[remote "origin"] + url = ssh://git@parabolagnulinux.org:1863/srv/git/packages/chroottools.git + fetch = +refs/heads/*:refs/remotes/origin/* +[remote "devtools"] + url = git://projects.archlinux.org/devtools.git + fetch = +refs/heads/*:refs/remotes/devtools/* +[branch "master"] + remote = origin + merge = refs/heads/master +[branch "complete"] + remote = devtools + merge = refs/heads/master -- cgit v1.2.2