Skip to content

Commit 507b42c

Browse files
Create contributing.md
1 parent c4c0275 commit 507b42c

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

.github/contributing.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
## Contribution Guide
2+
Here are the steps to contribute to this project:
3+
4+
1. Star this repository.
5+
2. Fork this repository.
6+
7+
Type the following command on Git bash console:
8+
```bash
9+
git clone https://github.com/open-sciencelab/GraphGen.git
10+
```
11+
12+
3. Create a new branch
13+
14+
Now before making changes to the files, go to your terminal under the repo you just cloned, and type the following:
15+
16+
```bash
17+
git checkout -b add-my-name
18+
```
19+
20+
By running the above command, you just created a new branch called add-my-name and checked it out, what this does is that it creates a new branch with the commit history of the master branch or the branch that you were on previously.
21+
22+
4. Make your changes and push your code.
23+
24+
```
25+
git add .
26+
git commit -m "xxx"
27+
git push
28+
```
29+
30+
This will create a new commit with the changes you made.
31+
32+
5. Now create a pull request and add the title.
33+
34+
Sit back and relax while your pull request is being reviewed and merged.

0 commit comments

Comments
 (0)