mirror of https://github.com/zulip/zulip.git
8 lines
110 B
Plaintext
8 lines
110 B
Plaintext
|
#!/bin/sh
|
||
|
set -e
|
||
|
set -x
|
||
|
|
||
|
request_id="$1"
|
||
|
git fetch origin "pull/$request_id/head"
|
||
|
git reset --hard FETCH_HEAD
|