Files
zulip/tools/fetch-rebase-pull-request
2016-08-24 14:23:37 -07:00

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