You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/git-branching-strategies/githubflow.md
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -3,14 +3,14 @@ GitHub Flow is a simple and effective branching strategy which the folks at GitH
3
3
4
4
GitHub Flow is in a nutshell:
5
5
6
-
1) Update master to latest [upstream](../reference/git-setup.md#upstream) code
7
-
2) Create a feature branch `git checkout -b myFeatureBranch`
8
-
3) Do the feature/work
9
-
4) Push feature branch to [origin](../reference/git-setup.md#origin)
10
-
5) Create pull request from origin/<featureBranch> -> upstream/master
11
-
6) Review, fix raised comments, merge your PR or even better, get someone else to.
6
+
1. Update master to latest [upstream](../reference/git-setup.md#upstream) code
7
+
1. Create a feature branch `git checkout -b myFeatureBranch`
8
+
1. Do the feature/work
9
+
1. Push feature branch to [origin](../reference/git-setup.md#origin)
10
+
1. Create pull request from origin/<featureBranch> -> upstream/master
11
+
1. Review, fix raised comments, merge your PR or even better, get someone else to.
12
12
13
-
The main rule of GitHub Flow is that master should *always* be deployable. GitHub Flow allows and encourages [continuous deliver](../reference/continuous-delivery.md).
13
+
The main rule of GitHub Flow is that master should *always* be deployable. GitHub Flow allows and encourages [continuous delivery](../reference/continuous-delivery.md).
14
14
15
15
## Resources
16
16
-[GitHubFlow guide by GitHub](https://guides.github.com/introduction/flow/index.html)
0 commit comments