Welcome to Nexus! We're thrilled that you're considering contributing to our project. Before you get started, please take a moment to read this document to understand the contribution process.
Nexus is participating in Hacktoberfest. To qualify for a Hacktoberfest tree, you need to make at least four meaningful pull requests to this repository.
-
Fork the repository: Click the "Fork" button at the top right of this repository.
-
Clone your fork: Clone your fork of the repository to your local machine.
git clone https://github.com/mlscgescoe/nexus.git
-
Create a New Branch: Create new branch for the changes you make in the project
git checkout -b feature/your-feature
-
Make your Changes: Solve the issues in the project by modifying codebase
-
Commit your Changes: Commit the changes to your newly created branch
git commit -m "Your meaningful commit message"
-
Push Changes: Push the changes to the repository forked on you GitHub account
git push origin feature/your-feature
-
Create a Pull Request: After code is pushed to the Repository on your Account, Create a Pull Request
-
Please make sure your pull request is concise and to the point. If you're adding a new feature or fixing a bug, explain the problem and the solution.
-
Keep pull requests small and focused. If you have multiple contributions, create a separate pull request for each.
-
Write clear and detailed commit messages.
-
Make sure your code is well-documented. Include comments as necessary.
-
All contributions should pass the existing tests and linters.
-
Ensure your code follows the existing coding style of the project.
-
Be open to feedback and willing to make necessary changes.