]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
doc/cleanup: drop repo-access.rst 32276/head
authorNathan Cutler <ncutler@suse.com>
Mon, 16 Dec 2019 15:48:56 +0000 (16:48 +0100)
committerNathan Cutler <ncutler@suse.com>
Mon, 16 Dec 2019 15:52:43 +0000 (16:52 +0100)
This is an older document containing some notes on GitHub branches, etc.
The information it contains is now covered elsewhere in the documentation.
Namely, in:

* SubmittingPatches.rst
* SubmittingPatches-backports.rst
* doc/dev/developer_guide.rst
* doc/releases/general.rst
* doc/testing.rst

Signed-off-by: Nathan Cutler <ncutler@suse.com>
doc/dev/repo-access.rst [deleted file]

diff --git a/doc/dev/repo-access.rst b/doc/dev/repo-access.rst
deleted file mode 100644 (file)
index 6a8570a..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-Notes on Ceph repositories
-==========================
-
-Special branches
-----------------
-
-* ``master``: current tip (integration branch)
-* Release branches (for example ``luminous``) corresponding to the releases
-  listed at :ref:`ceph-releases-index`
-
-Rules
------
-
-The source repos are all on github.
-
-* Any branch pushed to ceph-ci.git will kick off builds that will
-  generate packages and repositories on shaman.ceph.com. Try
-  not to generate unnecessary load.  For private, unreviewed work,
-  only push to branches named ``wip-*``.  This avoids colliding with
-  any special branches.
-
-* Nothing should reach a special branch unless it has been
-  reviewed.
-
-* Preferred means of review is via github pull requests to capture any
-  review discussion.
-
-* For multi-patch series, the pull request can be merged via github,
-  and a Reviewed-by: ... line added to the merge commit.
-
-* For single- (or few-) patch merges, it is preferable to add the
-  Reviewed-by: directly to the commit so that it is also visible when
-  the patch is cherry-picked for backports.
-
-* All backports should use ``git cherry-pick -x`` to capture which
-  commit they are cherry-picking from.