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
{{ message }}
This repository was archived by the owner on Mar 9, 2021. It is now read-only.
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+8-1Lines changed: 8 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -23,6 +23,10 @@ We welcome pull requests from beginners and seasoned javaScript developers alike
23
23
2. If you decide to fix an issue, please be sure to check the comment thread in case somebody is already working on a fix. If nobody is working on it at the moment, please leave a comment stating that you intend to work on it so other people don’t accidentally duplicate your effort.
24
24
3. If somebody claims an issue but doesn’t follow up for more than a weeks, it’s fine to take over it but you should still leave a comment.
25
25
26
+
### Branching Model
27
+
The `master` branch of coderplex is relatively stable branch which we update for every release. We also have auto deployment in place for that particular branch i.e any changes in that branch gets reflected in [https://coderplex.org](https://coderplex.org). Before every release we throughly test develop branch and merge into master.
28
+

29
+
Hence it is recommended for both maintainers and contributors to raise a pull request to `develop` branch.
26
30
27
31
### Proposing a Change
28
32
1. Open a new issue if you would like report a bug or suggest improvements.
@@ -91,7 +95,7 @@ We welcome pull requests from beginners and seasoned javaScript developers alike
91
95
6. Add and commit your code. Please give meaning full commit messages.
92
96
7. Pull latest code from [upstream repository's ](https://help.github.com/articles/merging-an-upstream-repository-into-your-fork/)`master`, ifincase anything new were merged while you were working on your fork.
93
97
8. Push the code to your fork.
94
-
9. Raise the pull request from your created branch to `master` branch of coderplex.
98
+
9. Raise the pull request from your created branch to `develop` branch of coderplex. [why develop instead of master branch?]()
95
99
10. Take some time to give a brief description of the work you have done.
If you get this error while running `yarn dev`then probably another app is occupying `localhost:3000`. You may want to close that and run the command again.
162
+
163
+
##### 3. Why we recommend sending new pull requests to `develop` instead of `master` branch ?
164
+
The master branch of coderplex is relatively stable branch which we update forevery release. We also have auto deploymentin place formaster branch i.e any changesin that branch gets reflected in`https://coderplex.org`. Every release we throughly test develop branch and merge into master. Hence it is recommended for both maintainers and contributors to raise a pull request to `develop` branch.
0 commit comments