summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-04-27 22:40:53 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-04-27 22:40:53 +0000
commitd3737db6b5a1d53d8d529edba6a7845994c64587 (patch)
tree667e37daeaaf4ce64112a5e3c474b7c4d2c87a31 /doc
parent1721148bae4f1a9721a0b988befb5b7d8c9e22f5 (diff)
downloadredmine-d3737db6b5a1d53d8d529edba6a7845994c64587.tar.gz
redmine-d3737db6b5a1d53d8d529edba6a7845994c64587.zip
Delete doc/git.rdoc.
http://www.redmine.org/projects/redmine/wiki/Contribute?version=27 has the github mirror link. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5557 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'doc')
-rw-r--r--doc/git.rdoc36
1 files changed, 0 insertions, 36 deletions
diff --git a/doc/git.rdoc b/doc/git.rdoc
deleted file mode 100644
index aa1b624af..000000000
--- a/doc/git.rdoc
+++ /dev/null
@@ -1,36 +0,0 @@
-= Contributing to Redmine with git and github
-
-(This is a beta document.)
-
-The mirror repository is at http://github.com/edavis10/redmine
-
-Branches:
-
-* master - is automatically mirrored to svn trunk.
-* [0.6, 0.7, 0.8, 0.9, 1.0,...]-stable - is automatically mirrored to svn release branches. DO NOT COMMIT OR MERGE INTO THIS BRANCH
-
-== Branch naming standards
-
-Redmine has two kinds of development:
-
-* bug fixes
-* new feature development
-
-Both bug fixes and new feature development should be done in a branch named after the issue number on Redmine.org. So if you are fixing Issue #6244 your branch should be named:
-
-* 6244
-* 6244-sort-people-by-display-name (optional description)
-* issue/6244 (optional "issue" prefix)
-* issue/6244-sort-people-by-display-name (optional prefix and description)
-
-That way when the branch is merged into the Redmine core, the correct issue can be updated.
-
-Longer term feature development might require multiple branches. Just your best judgment and try to keep the issue id in the name.
-
-If you don't have an issue for your patch, create an issue on redmine.org and say it's a placeholder issue for your work. Better yet, add a brief overview of what you are working on to the issue and you might get some help with it.
-
-== Coding Standards
-
-Follow the coding standards on the Redmine wiki: http://www.redmine.org/wiki/redmine/Coding_Standards#Commits. Make sure you commit logs conform to the standards, otherwise someone else will have to rewrite them for you and you might lose attribution during the conversion to svn.
-
-