A pull request (PR) is a way to propose changes to a repository.
- Fork the repository.
- Create a new branch and make changes.
- Push the branch to your fork.
- Open a PR on GitHub/GitLab.
- PRs allow collaborators to review and discuss changes before merging.
- Resolve conflicts and address feedback during the PR process.
git checkout -b feature-login
git add .
git commit -m "Add login feature"
git push origin feature-login