Issues help you track bugs, feature requests, and tasks for your project.
Labels help organize and filter issues:
bug - Something isn't workingenhancement - New feature requestdocumentation - Improvements to docshelp wanted - Extra attention neededgood first issue - Good for newcomersPull requests let you propose changes to a repository and review them before merging.
Create a new branch:
git checkout -b feature/my-feature
Make your changes and commit:
git add .
git commit -m "Add new feature"
git push origin feature/my-feature
Go to the repository on gityar
Click "Pull Requests" → "New Pull Request"
Select your branch and provide:
Click "Create Pull Request"
Reviewers can:
Update your branch if needed:
git pull origin main
git push origin feature/my-feature