mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
Minor fixes that enable the ability to: - Re-run fetch-rebase-pull-request. - Specify the name of the remote repo as an optional second parameter. The default remains 'upstream'.
11 lines
211 B
Bash
Executable File
11 lines
211 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
set -x
|
|
|
|
request_id="$1"
|
|
remote=${2:-"upstream"}
|
|
git fetch "$remote" "pull/$request_id/head"
|
|
git checkout -B "review-${request_id}" $remote/master
|
|
git reset --hard FETCH_HEAD
|
|
git pull --rebase
|