Wiki page git-guide.md changed with summary [] by Mike Blumenkrantz

This commit is contained in:
Mike Blumenkrantz 2017-11-21 07:09:06 -08:00 committed by apache
parent c1b10a6508
commit 03a1f6cd9c
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ $ git push origin --delete devs/{devname}/{branch}
### Feature Branches ###
Anyone with full commit access can create, manage, or delete a feature branch for a repository. The naming must be ``feature/{name}`` where ``{name}`` is the name of the feature. Feature branches can be pushed to by anyone with any form of commit access, but they cannot be rewritten (ie. no ``rebase -i``).
Anyone with full commit access can create, manage, or delete a feature branch for a repository. The naming must be ``feature/{name}`` where ``{name}`` is the name of the feature. Feature branches can be pushed to by anyone with any form of commit access (including probies), but they cannot be rewritten (ie. no ``rebase -i``).
The purpose of a feature branch is to continue the collaborative development of a feature which has already reached the state of being functional during initial development in a developer branch; feature branches should be considered the "alpha release" state for any significant feature prior to merging it to master.