LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

git-request-pull

Generate a pull request summary for email submission

TLDR

Generate pull request summary
$ git request-pull [start] [url]
copy
Generate summary between a tag and a specific branch end point
$ git request-pull [v1.0] [https://example.com/repo.git] [my-branch]
copy
Include patch text in the output
$ git request-pull -p [v1.0] [https://example.com/repo.git]
copy

SYNOPSIS

git request-pull [-p] start url [end]

DESCRIPTION

git request-pull generates a summary of pending changes suitable for email submission. It creates a message describing the commits between a starting point and the current HEAD, along with the URL to pull from.This command is commonly used in email-based patch workflows to ask maintainers to pull changes from your repository.

PARAMETERS

-p

Include patch text in the output.
start
Commit to start at. This names a commit that is already in the upstream history.
url
The repository URL to be pulled from.
end
Commit to end at (defaults to HEAD). This names the commit at the tip of the history you are asking to be pulled.

SEE ALSO

Copied to clipboard
Kai