Skip to content

Commit 043970a

Browse files
committed
Best Practices by rosaq
Signed-off-by: rosaq <rosa.quintero@gmail.com>
1 parent f42dd1f commit 043970a

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

best-practices/README-RQ.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Best practices
2+
3+
## Creating a Feature Branch
4+
5+
Feature branches (or sometimes called topic branches) are used to develop new features for the upcoming or a distant future release. When starting development of a feature, the target release in which this feature will be incorporated may well be unknown at that point. The essence of a feature branch is that it exists as long as the feature is in development, but will eventually be merged back into develop (to definitely add the new feature to the upcoming release) or discarded (in case of a disappointing experiment).
6+
7+
8+
When starting work on a new feature, branch off from the **develop** branch.
9+
10+
* Switched to a new branch "myfeature"
11+
12+
> $ git checkout -b myfeature develop
13+
14+
15+
16+
17+
For more reference for the Branches take a look in this article
18+
[Git branching model](http://nvie.com/posts/a-successful-git-branching-model/)

0 commit comments

Comments
 (0)