Thank you for considering contributing to AutoSubs!
I welcome contributions from everyone. I will try to review any pull requests as soon possible 😊
- Fork the repository by clicking the "Fork" button at the top right of the repository page.
- Clone your forked repository to your local machine:
git clone https://github.com/YOUR-USERNAME/auto-subs.git
- Navigate to the cloned directory:
cd auto-subs
Create a new branch for your work. Use a descriptive name for your branch (e.g., fix-bug-123
or add-new-feature
):
git checkout -b my-branch-name
Ensure you have the necessary dependencies installed (guide in the readme.md)
- Make sure your changes follow the project's coding style and guidelines.
- Write clear and concise commit messages.
- Test your changes thoroughly.
- Add and commit your changes:
git add . git commit -m "A brief description of your changes"
- Push your changes to your fork:
git push origin my-branch-name
- Navigate to your fork on GitHub.
- Click the "Compare & pull request" button.
- Provide a clear and detailed description of your changes.
- Submit the pull request.
- Your pull request will be reviewed by me (the repository maintainer).
- Ensure you address any feedback and make the necessary changes.
- Once your pull request is approved, it will be merged into the
main
branch.
If you need any help, feel free to open an issue on GitHub and I will try to get back to you.
Thank you for your contributions and for helping improve AutoSubs!