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
Please take some time to read and understand this file. This will help keep the project clean and transparent for all contributors. It will also make it easier for admins and moderators to merge your code suggestions.
5
+
6
+
# Forks
7
+
The first part is to create your own fork of the project. You can do this directly from GitHub by pressing the fork button in the top right corner. This will create a copy of the repository on your account. In this repository you can do whatever you want without it affecting the original repository. As long as you adhere to the following rules when branching and creating pull requests (PR).
8
+
9
+
# Branches
10
+
When creating a new branch please adhere to the following guidelines:
11
+
- The branch should match one of the below
12
+
- The branch "sections" are seperated with "/" (slash)
13
+
- The branch name is lowercase
14
+
15
+
## Issue fixing branch
16
+
If the branch you are creating fixes an issue please name the branch:
17
+
`issue/(Issue #)/(GitHub name)`
18
+
19
+
This signals that the branch is trying to fix a known issue.
20
+
21
+
## Feature branch
22
+
If you would like to add a new feature that you feel is missing. Please create a feature-request issue on the original repository, this way a issue number gets created. Then create the branch with the name:
23
+
`feature/(Issue #)/(GitHub name)`
24
+
25
+
## Examples
26
+
27
+
**Issue:**
28
+
`issue/18/vitexftw`
29
+
30
+
**Feature:**
31
+
`feature/22/Mads`
32
+
33
+
# Commit messages
34
+
Commit messages should be consice and descriptive. They should specify what section was changed.
35
+
Please prefix your commit messeage with one of the following.
36
+
37
+
| Prefix | Description |
38
+
|:------------|:---------------------------|
39
+
| fix: | Fixes a GitHub issue |
40
+
| feat: | Adds new feature |
41
+
| doc: | Document code/github |
42
+
| refactor: | Rewritten code (no effect) |
43
+
44
+
### Example
45
+
See commit messeage for this PR [#17](https://github.com/ViTeXFTW/ZeroSyntax-Server/pull/17)
46
+
"Fix: [BUG] Incorrect error in WeaponSet Weapon property #14"
47
+
48
+
# Pull Requests (PR)
49
+
For PRs please use the attached [PR Template](./.github/PULL_REQUEST_TEMPLATE/pull_request_template.md)
50
+
51
+
### Example
52
+
See commit messeage for this PR [#17](https://github.com/ViTeXFTW/ZeroSyntax-Server/pull/17)
53
+
54
+
# Merges
55
+
Merges are only approved by the admin (ViTeXFTW), and will be done when the PR has been reviewed and tested.
56
+
57
+
# License
58
+
By contributing you agree that your code will be licensed under the [LICENSE](./LICENSE) file in the root directory of this source tree.
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,13 +44,13 @@ The server supports context based code completion. This is done by analyzing the
44
44
45
45
46
46
## Contributing
47
-
For contributing you will need to fork the repository, create your own branch make and test any changes you feel is missing from the project and create a pull request. I will then take a look at the code changes and merge the code if everything is in order.
47
+
See [CONTRIBUTIN](CONTRIBUTING)
48
48
49
49
## Licsens
50
50
This projct is under the MIT [LICENSE](LICENSE)
51
51
52
52
## Sugestions
53
-
As this is my first open-source project, if you have any ideas or suggestions please write to me on eithre Discord or mail. (Discord might be better)
53
+
As this is my first open-source project, if you have any ideas or suggestions please write to me on either Discord or mail. (Discord might be better)
0 commit comments