Contributions are welcome and encouraged! Whether you're fixing a typo, adding a new server, or suggesting improvements, your help is appreciated.
-
Fork the repository: Click the "Fork" button in the top right corner of the GitHub page.
-
Create a new branch: Create a new branch for your changes. This keeps your changes separate from the main project until they're ready to be merged. A good branch name describes the changes you're making, e.g.,
add-new-server
orfix-typo
.git checkout -b add-new-server
-
Make your changes: Edit the
README.md
file with your additions or corrections. Please follow the existing format and style. When adding a new server, make sure to include:- The server name, linked to its repository.
- A brief description of the server's functionality.
- Categorize the server appropriately under the relevant section. If a new category is needed, please create one and maintain alphabetical order.
-
Commit your changes: Commit your changes with a clear and concise message explaining what you've done.
git commit -m "Add new XYZ server"
-
Push your branch: Push your branch to your forked repository.
git push origin add-new-server
-
Create a pull request: Go to the original repository and click the "New pull request" button. Select your forked repository and branch. Provide a clear title and description of your changes in the pull request.
-
Review and merge: Your pull request will be reviewed by the maintainers. They may suggest changes or ask for clarification. Once the review is complete, your changes will be merged into the main project.
- Keep it consistent: Follow the existing format and style of the
README.md
file. This includes formatting, capitalization, and punctuation. - Alphabetical order: Maintain alphabetical order within each category of servers. This makes it easier to find specific servers.
- Accurate information: Ensure that all information is accurate and up-to-date. Double-check links and descriptions before submitting your changes.
- One server per line: List each server on a separate line for better readability.
- Clear descriptions: Write concise and informative descriptions for each server. Explain what the server does and what its key features are.
Thank you for contributing!