dotfiles/script/ghco

13 lines
248 B
Plaintext
Raw Normal View History

2021-03-31 10:47:59 +00:00
#!/usr/bin/env bash
# Select and checkout a GitHub pull request using the GitHub CLI (required)
set -e
2021-04-23 01:57:17 +00:00
export GH_NO_UPDATE_NOTIFIER=1
2021-08-04 08:21:25 +00:00
prid=$(gh pr list --limit 100 | fzf | awk '{print $1}')
2021-03-31 10:47:59 +00:00
if [ -z $prid ]; then
exit 0
fi
gh pr checkout $prid