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
Copy file name to clipboardexpand all lines: CONTRIBUTING.md
+24
Original file line number
Diff line number
Diff line change
@@ -84,6 +84,30 @@ Contributing to the Avail Documentation is simple. You'll need a GitHub account
84
84
85
85
This will start a local dev derver at `http://localhost:3000` on your machine.
86
86
87
+
## Push changes and create PR
88
+
89
+
Once you are done with all the changes, save all you files and run:
90
+
91
+
1.```bash
92
+
git add .
93
+
```
94
+
95
+
to stage all the changes.
96
+
97
+
2.```bash
98
+
git commit -m "Your commit message"
99
+
```
100
+
101
+
to commit the changes with ann appropriate commit message.
102
+
103
+
3. Once you have committed all the changes, push the changes to your forked repository by running:
104
+
105
+
```bash
106
+
git push origin main
107
+
```
108
+
109
+
Now you can use the Github UI to create a PR from your forked repository to the `staging` branch of the upstream repository.
110
+
87
111
## License
88
112
89
113
The Avail Project Developer Documentation is licensed under the [MIT License](./LICENSE) free software license.### How to Contribute Changes via the Avail Documentation Website.
0 commit comments