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
When contributing to this repository, please first discuss the change you wish to make via issue with the collaborators of this repository before making a change.
4
+
5
+
## Git process
6
+
7
+
In order to push new code on this repository, you first have to create a new fork within your github workspace.
8
+
9
+
Once your fork is created (`https://github.com/<your_username>/CTFNote`), you can create a new branch starting with the associated issue number in the name and start working on it.
10
+
11
+
> If you start from scratch and no issues are associated with your changes, you can create a branch starting with '0-'.
12
+
13
+
```shell
14
+
$ git checkout -b <issue-number>-<branch-name>
15
+
```
16
+
17
+
Examples of branch name:
18
+
19
+
-`132-add-new-feature`
20
+
-`343-add-past-ctf-role`
21
+
-`13-fix-bug-in-password-reset`
22
+
-`37-leak-flag-to-TFNS`
23
+
-`0-contribution-guide`
24
+
25
+
Once you think the job is done, issue the pull request and target the **dev** branch of the official CTFNote repository.
26
+
27
+
You can also create the pull request before finishing the job but don't forget to add "WiP: " as a suffix in the title to let the collaborators know you are still working on the request.
0 commit comments