DocsLab

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_NAME

3. Create a Branch

git checkout -b feature/your-feature-name

4. 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-name

Then, go to the original repository and click Compare & pull request.

On this page