Add a new command for applying github prs

This commit is contained in:
ViViDboarder 2018-04-05 16:10:52 -07:00
parent 743fda9641
commit c33335478e
1 changed files with 16 additions and 0 deletions

16
assets/default/bin/gh-am Executable file
View File

@ -0,0 +1,16 @@
#! /bin/bash
# gh-am Applies a Github PR as a patch
# Author: ViViDboarder
set -e
get_patch() {
local pr_url=$1
curl -L $pr_url.patch 2> /dev/null
}
main() {
local pr_url=$1
get_patch $pr_url | git am
}
main $*