- 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.