Down for Maintenance from December 17, 2025 Wednesday 9:30pm PST to December 18, 2025 Thursday 3:30am PST (i.e., 05:30am -11:30am GMT, December 18, 2025 Thursday)
- Loading...
git-backport fetches a commit from a remote repository and applies it on top of the current branch. Conceptually git-backport is similar to the following two Git commands:
git fetch <REMOTE-REPO> <HASH>git cherry-pick FETCH_HEADgit-backport will always use the commit message "Backport <HASH>" for the new commit to make it easier to create a "backport pull request" (for example via git-pr-create).
See GitBackport.java.