Spaces:
Runtime error
Runtime error
File size: 1,605 Bytes
14ee1a9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
# The Basics
We believe that everyone can contribute and make a difference. Whether it's writing code ๐ป, fixing bugs ๐, or simply sharing feedback ๐ฌ, your contributions are definitely welcome and appreciated ๐
And if you like the project, but just don't have time to contribute, that's fine. There are other easy ways to support the project and show your appreciation, which we would also be very happy about:
- Star the project
- Tweet about it
- Refer this project in your project's readme
- Mention the project at local meetups and tell your friends/colleagues
## Fork and Pull Request
When contributing to the codebase of VideoGenHub, the first step is to create a fork of the repository. Then, itโs best practice to create a separate branch for each new pull request (PR) you create. This can be done using:
```shell
git checkout -b name_of_your_branch
```
The main branch then simply has the role of being kept up to date with upstream. You can create PRs based on the main branch of your fork, but this will make things more complicated if you would then like to create additional PRs in the future.
## Each Pull Request point to an issue
We suggest using one pull-request for each issue. This makes changes clear and simple.
* Link each Pull Request to an issue: `- [ ] #issue_number`
### Commits across minimum files on each Pull Request
Since each Pull Request links to one issue, donโt change too many files at once. Keeping changes small makes it easier for others to check and understand. It also reduces mistakes and mix-ups. So, always keep it simple and focused. |