GitHub Contribution Guide
Learn how to fork, branch, commit, and open PRs.
GitHub Contribution Guide
This guide walks you through the standard Git workflow used in Android Club projects.
1. Fork the Repository
Click the Fork button on the top right of the project's repository page.
2. Clone Your Fork
git clone https://github.com/YOUR_USERNAME/PROJECT_NAME.git
cd PROJECT_NAME3. Create a Branch
git checkout -b feature/your-feature-name4. Make Changes and Commit
Write good commit messages!
git add .
git commit -m "feat: added new awesome feature"5. Push and Open a PR
git push origin feature/your-feature-nameThen, go to the original repository and click Compare & pull request.