mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
11 lines
186 B
Bash
Executable File
11 lines
186 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
set -x
|
|
|
|
request_id="$1"
|
|
git fetch upstream "pull/$request_id/head"
|
|
git checkout upstream/master -b "review-${request_id}"
|
|
git reset --hard FETCH_HEAD
|
|
git pull --rebase
|
|
|