プロジェクト

全般

プロフィール

Rule of Shared Repository » 履歴 » バージョン 6

« 前 - バージョン 6/10 (差分) - 次 » - 最新版
Kousuke Ebihara, 2012-11-22 18:51


Rule of Shared Repository

Overview

This document provides rule of handling shared repository of developing OpenPNE3.

In this document, the "shared repository" means that is git://github.com/openpne/OpenPNE3.git.

Everyone must follow this rule to handle the shared repository.

"push" privilege to handle shared repository

GitHub accounts that are in the following list, can execute "push" operations to shared repository (as of Nov 22, 2012):

If you think that you are worthy of repository collaborators, please tell your GitHub account to .
If you think that you are worthy of getting "push" privilege, please tell your GitHub account to ebihara, balibali, or ShinichiU.

Committing

Direct Committing

Committing direct is not allowed excepting few cases.

Release Manager can directly commit when he works for releasing.

In other cases, anyone must work in his own clone.

Commit Messages

In merging, commit messages must follow the following rule:
  • A message must be written in English. A message can contain other languages, but that must be explained in English.
  • A message must contain related ticket ID. The ID must be specified with "refs" or "fixes" keyword. We have useful hook script for keeping it: http://gist.github.com/202866
    e.g. "Added ability to delete member from the mobile_backend application (refs #1)", "Added ability to configure gadgets from the mobile_backend application. Adding support to manage SNS from mobile is now completed. (fixes #1)"
  • A message must tell everyone what the commit is.

A commit that doesn't follow this rule, most likely is rejected.

Merging

If you developed something or got "Pull Request", please merge it. After merging, you must check changes. If the changes has some faults, contact author about it to fix them.

If changes looks fine, push it to shared repository, and change a status of the related ticket to "Pending Review". (Changing status is doing automatically if a commit is related with a ticket by the "fixes" keyword in its message)

Branches

Branches of the shared repository must limit the release branches (they contain the master branch). Don't push a branch for your work. You should create such a branch to your repository.