X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fceph%2Fdoc%2Fdev%2Frepo-access.rst;fp=src%2Fceph%2Fdoc%2Fdev%2Frepo-access.rst;h=0000000000000000000000000000000000000000;hb=7da45d65be36d36b880cc55c5036e96c24b53f00;hp=0196b0af9e8b47dce08c6ce44606c65a2822b34e;hpb=691462d09d0987b47e112d6ee8740375df3c51b2;p=stor4nfv.git diff --git a/src/ceph/doc/dev/repo-access.rst b/src/ceph/doc/dev/repo-access.rst deleted file mode 100644 index 0196b0a..0000000 --- a/src/ceph/doc/dev/repo-access.rst +++ /dev/null @@ -1,38 +0,0 @@ -Notes on Ceph repositories -========================== - -Special branches ----------------- - -* ``master``: current tip (integration branch) -* ``next``: pending release (feature frozen, bugfixes only) -* ``last``: last/previous release -* ``dumpling``, ``cuttlefish``, ``bobtail``, ``argonaut``, etc.: stable release branches -* ``dumpling-next``: backports for stable release, pending testing - -Rules ------ - -The source repos are all on github. - -* Any branch pushed to ceph.git will kick off builds that will either - run unit tests or generate packages for gitbuilder.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 every 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.