HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

git request-pull — Generate a request asking the upstream project to pull changes into its tree. More information: <htt

Submitted by: @import:tldr-pages··
0
Viewed 0 times
thegit request-pullcommandupstreamcliaskingrequestgenerate

Problem

How to use the git request-pull command: Generate a request asking the upstream project to pull changes into its tree. More information: <https://git-scm.com/docs/git-request-pull>.

Solution

git request-pull — Generate a request asking the upstream project to pull changes into its tree. More information: <https://git-scm.com/docs/git-request-pull>.

Produce a request summarizing the changes between the v1.1 release and a specified branch:
git request-pull {{v1.1}} {{https://example.com/project}} {{branch_name}}


Produce a request summarizing the changes between the v0.1 release on the foo branch and the local bar branch:
git request-pull {{v0.1}} {{https://example.com/project}} {{foo:bar}}

Code Snippets

Produce a request summarizing the changes between the v1.1 release and a specified branch

git request-pull {{v1.1}} {{https://example.com/project}} {{branch_name}}

Produce a request summarizing the changes between the v0.1 release on the `foo` branch and the local `bar` branch

git request-pull {{v0.1}} {{https://example.com/project}} {{foo:bar}}

Context

tldr-pages: common/git request-pull

Revisions (0)

No revisions yet.