mirror of
https://github.com/tj/git-extras.git
synced 2026-09-10 07:26:17 -04:00
* feat(mr): support Forgejo/Codeberg pull request URLs Codeberg and other Forgejo instances expose pull requests under refs/pull/<id>/head instead of GitLab's refs/merge-requests/<id>/head, so passing a Codeberg pull request URL to git mr fetched the wrong ref. Recognize the /pulls/<id> URL shape and switch to the matching ref for that case, leaving the GitLab URL and bare numeric id behavior unchanged. Closes #1213 * test(git-mr): cover Forgejo/Codeberg URLs, regenerate man docs Add a bats test that exercises the pulls URL branch via a local insteadOf remote rewrite (no real HTTP endpoint needed), and bring git-mr.1/git-mr.html in line with the git-mr.md changes. --------- Co-authored-by: vjymisal0 <vijay.looprai@gmail.com>
73 lines
1.5 KiB
Groff
73 lines
1.5 KiB
Groff
.\" generated with Ronn/v0.7.3
|
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
|
.
|
|
.TH "GIT\-MR" "1" "April 2018" "" "Git Extras"
|
|
.
|
|
.SH "NAME"
|
|
\fBgit\-mr\fR \- Checks out a merge request locally
|
|
.
|
|
.SH "SYNOPSIS"
|
|
\fBgit\-mr\fR <number> [<remote>]
|
|
.
|
|
.br
|
|
\fBgit\-mr\fR <url>
|
|
.
|
|
.br
|
|
\fBgit\-mr clean\fR
|
|
.
|
|
.SH "DESCRIPTION"
|
|
Fetches merge request head by its number or URl and check it out in a branch named with merge request number\.
|
|
.
|
|
.SH "OPTIONS"
|
|
<remote>
|
|
.
|
|
.P
|
|
The name of the remote to fetch from\. Defaults to \fBorigin\fR\.
|
|
.
|
|
.P
|
|
<url>
|
|
.
|
|
.P
|
|
GitLab merge request URL in the format \fBhttps://gitlab\.tld/owner/repository/merge_requests/453\fR, or a Forgejo/Codeberg pull request URL in the format \fBhttps://codeberg\.tld/owner/repository/pulls/453\fR\.
|
|
.
|
|
.SH "EXAMPLES"
|
|
This checks out merge request \fB!51\fR from remote \fBorigin\fR to branch \fBmr/51\fR\.
|
|
.
|
|
.IP "" 4
|
|
.
|
|
.nf
|
|
|
|
$ git mr 51
|
|
From gitlab\.com:owner/repository
|
|
* [new ref] refs/merge\-requests/51/head \-> mr/51
|
|
Switched to branch \'mr/51\'
|
|
.
|
|
.fi
|
|
.
|
|
.IP "" 0
|
|
.
|
|
.P
|
|
This checks out pull request \fB#51\fR from a Forgejo/Codeberg URL to branch \fBmr/51\fR\.
|
|
.
|
|
.IP "" 4
|
|
.
|
|
.nf
|
|
|
|
$ git mr https://codeberg\.org/owner/repository/pulls/51
|
|
From codeberg\.org:owner/repository
|
|
* [new ref] refs/pull/51/head \-> mr/51
|
|
Switched to branch \'mr/51\'
|
|
.
|
|
.fi
|
|
.
|
|
.IP "" 0
|
|
.
|
|
.SH "AUTHOR"
|
|
Written by Étienne BERSAC \fIbersace03@gmail\.com\fR from git\-pr(1)\.
|
|
.
|
|
.SH "REPORTING BUGS"
|
|
<\fIhttps://github\.com/tj/git\-extras/issues\fR>
|
|
.
|
|
.SH "SEE ALSO"
|
|
<\fIhttps://github\.com/tj/git\-extras\fR>
|