Skip to content

Commit 5e91471

Browse files
committed
Merge pull request #111 from NativeScript/fixing-contribute
Replacing references to the develop branch with references to master
2 parents 6f7045f + 4ae5427 commit 5e91471

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

CONTRIBUTING.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ Before you submit a Pull Request, consider the following guidelines.
5050
```bash
5151
git submodule update
5252
```
53-
* Make your changes in a new `git` branch. We use the <a href="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 <a href="http://nvie.com/posts/a-successful-git-branching-model/">Gitflow branching model</a> so you will have to branch from our master branch.
5454
```bash
55-
git checkout -b my-fix-branch develop
55+
git checkout -b my-fix-branch master
5656
```
5757
* Create your patch and include appropriate test cases.
5858
* Build your changes locally.
@@ -71,10 +71,10 @@ Before you submit a Pull Request, consider the following guidelines.
7171
```bash
7272
git push origin my-fix-branch
7373
```
74-
* In GitHub, send a Pull Request to icenium-cli:develop.
74+
* In GitHub, send a Pull Request to icenium-cli:master.
7575
* If we suggest changes, you can modify your branch, rebase, and force a new push to your GitHub repository to update the Pull Request.
7676
```bash
77-
git rebase develop -i
77+
git rebase master -i
7878
git push -f
7979
```
8080

@@ -86,17 +86,17 @@ When the patch is reviewed and merged, you can safely delete your branch and pul
8686
```bash
8787
git push origin --delete my-fix-branch
8888
```
89-
* Check out the develop branch.
89+
* Check out the master branch.
9090
```bash
91-
git checkout develop -f
91+
git checkout master -f
9292
```
9393
* Delete the local branch.
9494
```bash
9595
git branch -D my-fix-branch
9696
```
97-
* Update your develop branch with the latest upstream version.
97+
* Update your master branch with the latest upstream version.
9898
```
99-
git pull --ff upstream develop
99+
git pull --ff upstream master
100100
```
101101

102102
[Back to Top][1]

0 commit comments

Comments
 (0)