Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 503 Bytes

git-pull-request.md

File metadata and controls

21 lines (17 loc) · 503 Bytes

Git Pull Request

A pull request (PR) is a way to propose changes to a repository.

Usage

  1. Fork the repository.
  2. Create a new branch and make changes.
  3. Push the branch to your fork.
  4. Open a PR on GitHub/GitLab.

Explanation

  • PRs allow collaborators to review and discuss changes before merging.
  • Resolve conflicts and address feedback during the PR process.

Example

git checkout -b feature-login
git add .
git commit -m "Add login feature"
git push origin feature-login