Pull changes into the local repository.
-
Pull upstream changes from
<remote name>/<branch name>and perform a rebase on current branch instead of merging it (via). Useful to update+merge pull requests.git pull --rebase <remote name> <branch name>
| name: Auto-merge | |
| on: | |
| pull_request: | |
| types: [opened] | |
| jobs: | |
| automerge: | |
| runs-on: ubuntu-latest |
Pull changes into the local repository.
Pull upstream changes from <remote name>/<branch name> and perform a rebase on current branch instead of merging it (via). Useful to update+merge pull requests.
git pull --rebase <remote name> <branch name>