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: CONTRIBUTING.md
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -50,9 +50,9 @@ Before you submit a Pull Request, consider the following guidelines.
50
50
```bash
51
51
git submodule update
52
52
```
53
-
* Make your changes in a new `git` branch. We use the <ahref="http://nvie.com/posts/a-successful-git-branching-model/">Gitflow branching model</a> so you will have to branch from our develop branch.
53
+
* Make your changes in a new `git` branch. We use the <ahref="http://nvie.com/posts/a-successful-git-branching-model/">Gitflow branching model</a> so you will have to branch from our master branch.
54
54
```bash
55
-
git checkout -b my-fix-branch develop
55
+
git checkout -b my-fix-branch master
56
56
```
57
57
* Create your patch and include appropriate test cases.
58
58
* Build your changes locally.
@@ -71,10 +71,10 @@ Before you submit a Pull Request, consider the following guidelines.
71
71
```bash
72
72
git push origin my-fix-branch
73
73
```
74
-
* In GitHub, send a Pull Request to icenium-cli:develop.
74
+
* In GitHub, send a Pull Request to icenium-cli:master.
75
75
* If we suggest changes, you can modify your branch, rebase, and force a new push to your GitHub repository to update the Pull Request.
76
76
```bash
77
-
git rebase develop -i
77
+
git rebase master -i
78
78
git push -f
79
79
```
80
80
@@ -86,17 +86,17 @@ When the patch is reviewed and merged, you can safely delete your branch and pul
86
86
```bash
87
87
git push origin --delete my-fix-branch
88
88
```
89
-
* Check out the develop branch.
89
+
* Check out the master branch.
90
90
```bash
91
-
git checkout develop -f
91
+
git checkout master -f
92
92
```
93
93
* Delete the local branch.
94
94
```bash
95
95
git branch -D my-fix-branch
96
96
```
97
-
* Update your develop branch with the latest upstream version.
97
+
* Update your master branch with the latest upstream version.
0 commit comments