We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2eff158 commit d8f46bcCopy full SHA for d8f46bc
docs/CONTRIBUTING.md
@@ -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