Skip to content

Latest commit

 

History

History
51 lines (39 loc) · 1.48 KB

CONTRIBUTING.md

File metadata and controls

51 lines (39 loc) · 1.48 KB

Contributing to GitHub API Library

Thank you for considering contributing to our project! We appreciate your help. Follow the steps below to get started.

How to Contribute

1. Fork the Repository

  • Click on the "Fork" button at the top of this repository.
  • This will create a copy of the project under your GitHub account.

2. Clone Your Fork

git clone https://github.com/your-username/repository-name.git
  • Replace your-username and repository-name with your GitHub username and the project name.

3. Create a New Branch

  • Create a new branch for your changes.
git checkout -b feature/your-feature-name
  • Use a descriptive name for your branch.

4. Make Your Changes

  • Make sure your changes are focused and relevant to the project.

5. Test Your Changes

  • Ensure your changes are tested and don't break existing functionality.

6. Commit Your Changes

git add .
git commit -m "Add your meaningful commit message here"

7. Push Your Branch

git push origin feature/your-feature-name

8. Submit a Pull Request

  • Go to your forked repository on GitHub and click on the "New Pull Request" button.
  • Provide a clear description of your changes.

Contribution Guidelines

  • Ensure your code follows the project’s style and structure.
  • Provide tests for any new features.
  • Keep your pull request concise and limited to one issue or feature.

Need Help?

If you have any questions or need help, feel free to open an issue.