Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a pr-fetch-fork command #268

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions doc/git-hub.swim
Original file line number Diff line number Diff line change
Expand Up @@ -473,6 +473,9 @@ interactions from the command line. They are installed by default.
- `pr-fetch [<owner>/<repo>] <issue-id-number>`
Fetches a pull request to a local `review/$number` branch

- `pr-fetch-fork [<owner>/<repo>] <issue-id-number>`
Adds the remote url from the PR author and fetches the corresponding branch

- `pr-merge [<owner>/<repo>] <issue-id-number>`
Merge and close a pull request.

Expand Down
27 changes: 27 additions & 0 deletions lib/git-hub.d/git-hub-pr
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,33 @@ command:pr-fetch() {
msg_ok=0
}

command:pr-fetch-fork() {
local pr_user pr_branch fork_url
get-args '?owner:get-owner/repo:get-repo' number
assert-inside-git-repo
api-get "/repos/$owner/$repo/pulls/$number"
pr_user=$(JSON.get -s /user/login -)
pr_branch=$(JSON.get -s /head/ref -)
fork_url=$(JSON.get -s /head/repo/ssh_url -)

if [[ -n $(git remote | grep -E "^$pr_user$") ]]; then
echo "Remote $pr_user already exists"
else
git remote add "$pr_user" "$fork_url" ||
error "can't add remote $pr_user $fork_url"
fi

full_branch=$pr_user/$pr_branch
if [[ -n $(git branch | grep -E "^$full_branch$") ]]; then
echo "Branch $full_branch already exists"
else
git fetch "$pr_user" "$pr_branch" ||
error "can't fetch PR $full_branch"
fi
say "Fetched PR $number into $full_branch"
msg_ok=0
}

command:pr-merge() {
get-args '?owner:get-owner/repo:get-repo' number '?message'
local json_list=()
Expand Down