Welcome to codeX-KYC-webapp! We're glad you're interested in contributing to our project. Before you get started, please take a moment to review this document to understand how you can contribute to our project effectively.
-
Fork the Repository: Fork the repository to your GitHub account by clicking the "Fork" button on the top right corner of the repository's page.
-
Clone the Repository: Clone your forked repository to your local machine using the following command:
git clone https://github.com/your-username/your-fork.git
-
Create a Branch: Create a new branch to work on your changes. Use a descriptive name for your branch that reflects the changes you're making.
git checkout -b feature/new-feature
-
Make Changes: Make your desired changes to the codebase. Ensure that your changes adhere to the project's coding style and guidelines.
-
Commit Changes: Once you've made your changes, commit them with a clear and descriptive commit message.
git add . git commit -m "Add new feature: description of changes"
-
Push Changes: Push your changes to your forked repository.
git push origin feature/new-feature
-
Create a Pull Request (PR): Go to the original repository on GitHub and create a pull request. Provide a clear title and description for your pull request, explaining the changes you've made.