Skip to content

Commit e01279c

Browse files
authored
Merge pull request #550 from jaybdub/contributors
Contributors
2 parents b9d9e73 + 1dc9ad1 commit e01279c

File tree

1 file changed

+47
-0
lines changed

1 file changed

+47
-0
lines changed

CONTRIBUTORS.md

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# Contributors
2+
3+
Below is a list of developers who have contributed to torch2trt. This is also used to track contributors
4+
who have agreed to torch2trt's Contributor License Agreement.
5+
6+
- [John Welsh](https://github.com/jaybdub) (CLA)
7+
8+
## Becoming a Contributor
9+
10+
If you've made a notable contribution to torch2trt and wish to be listed as a contributor, simply do the following.
11+
12+
1. Modify ``CONTRIBUTORS.md`` and add your name with a hyperlink to your GitHub account to the end of the contributors list.
13+
14+
```md
15+
- [<Full name or GitHub account>](https://github.com/<GitHub account>)
16+
```
17+
18+
2. Stage the changes in a standalone commit
19+
20+
```md
21+
git add CONTRIBUTORS.md
22+
```
23+
24+
3. Make a signed commit with the following message text
25+
26+
```md
27+
git commit -m "Added <Full name or GitHub account> to CONTRIBUTORS.md"
28+
```
29+
30+
## Signing Contributor License Agreement (CLA)
31+
32+
In some instances, you may be requested to sign torch2trt's Contributor License Agreement (CLA). To do so,
33+
34+
1. If you're not already listed as a contributor in CONTRIBUTORS.md, make a commit as described above to add yourself to CONTRIBUTORS.md
35+
36+
2. Add the text ``(CLA)`` after your name in ``CONTRIBUTORS.md``
37+
3. Stage the changes in a standalone commit
38+
39+
```md
40+
git add CONTRIBUTORS.md
41+
```
42+
4. Make a signed commit with the following text
43+
44+
```md
45+
git commit -S -m "I have read and agree to the Contributor License Agreement as written in the file CLA.md of this project. Signed, <Full Name>"
46+
```
47+

0 commit comments

Comments
 (0)