Skip to content

Commit d8f46bc

Browse files
authored
Create CONTRIBUTING.md
1 parent 2eff158 commit d8f46bc

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

docs/CONTRIBUTING.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
## Contributing to txt2
2+
3+
Start off by creating a fork of the repository on github.
4+
Then clone this fork with git:
5+
6+
```git clone https://github.com/your_username/txt2```
7+
8+
And checkout to a new branch:
9+
10+
```git checkout -b my_new_feature```
11+
12+
Now open the generated txt2 folder with a code editor of your choice and make your edits.
13+
Then stage your changes:
14+
15+
```git add .```
16+
17+
And commit and push:
18+
19+
```
20+
git commit -m "My New Feature"
21+
git push
22+
```
23+
24+
Now create a pull request on the txt2 repo.

0 commit comments

Comments
 (0)