This commit is contained in:
spacewander 2020-08-27 11:03:06 +08:00
parent 6a455e7d29
commit 34ba1eb083
9 changed files with 63 additions and 46 deletions

View file

@ -1,7 +1,7 @@
.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "GIT\-BULK" "1" "December 2019" "" "Git Extras"
.TH "GIT\-BULK" "1" "August 2020" "" "Git Extras"
.
.SH "NAME"
\fBgit\-bulk\fR \- Run git commands on multiple repositories
@ -69,7 +69,7 @@ Any git Command you wish to execute on the repositories\.
Register a workspace for bulk operations\. All repositories in the directories below <ws\-root\-directory> get registered under this workspace with the name <ws\-name>\. <ws\-root\-directory> must be absolute path\.
.
.P
With option \'\-\-from\' the URL to a single repository or a file containing multiple URLs can be added and they will be cloned diretly into the workspace\. Suitable for the initial setup of a multi\-repo project\.
With option \'\-\-from\' the URL to a single repository or a file containing multiple URLs can be added and they will be cloned directly into the workspace\. Suitable for the initial setup of a multi\-repo project\.
.
.P
\-\-removeworkspace <ws\-name>

View file

@ -116,7 +116,7 @@ git bulk --listall</p>
<p> Register a workspace for bulk operations. All repositories in the directories below &lt;ws-root-directory&gt; get registered under this workspace with the name &lt;ws-name&gt;. &lt;ws-root-directory&gt; must be absolute path.</p>
<p> With option '--from' the URL to a single repository or a file containing multiple URLs can be added and they will be cloned diretly into the workspace. Suitable for the initial setup of a multi-repo project.</p>
<p> With option '--from' the URL to a single repository or a file containing multiple URLs can be added and they will be cloned directly into the workspace. Suitable for the initial setup of a multi-repo project.</p>
<p> --removeworkspace &lt;ws-name&gt;</p>
@ -183,7 +183,7 @@ $ git bulk --purge
<h2 id="AUTHOR">AUTHOR</h2>
<p>Written by Niklas Schlimm &lt;<a href="&#109;&#x61;&#x69;&#x6c;&#x74;&#x6f;&#x3a;&#x6e;&#115;&#49;&#48;&#51;&#x40;&#104;&#x6f;&#116;&#109;&#97;&#x69;&#108;&#x2e;&#100;&#x65;" data-bare-link="true">&#110;&#x73;&#x31;&#48;&#51;&#x40;&#104;&#x6f;&#x74;&#109;&#x61;&#x69;&#x6c;&#46;&#100;&#x65;</a>&gt;</p>
<p>Written by Niklas Schlimm &lt;<a href="&#x6d;&#x61;&#105;&#108;&#x74;&#111;&#58;&#x6e;&#x73;&#x31;&#48;&#51;&#x40;&#x68;&#111;&#116;&#x6d;&#97;&#105;&#108;&#x2e;&#100;&#101;" data-bare-link="true">&#110;&#x73;&#x31;&#x30;&#51;&#x40;&#104;&#111;&#116;&#x6d;&#97;&#105;&#108;&#46;&#x64;&#x65;</a>&gt;</p>
<h2 id="REPORTING-BUGS">REPORTING BUGS</h2>
@ -196,7 +196,7 @@ $ git bulk --purge
<ol class='man-decor man-foot man foot'>
<li class='tl'></li>
<li class='tc'>December 2019</li>
<li class='tc'>August 2020</li>
<li class='tr'>git-bulk(1)</li>
</ol>

View file

@ -40,7 +40,7 @@ git bulk adds convenient support for operations that you want to execute on mult
Register a workspace for bulk operations. All repositories in the directories below &lt;ws-root-directory&gt; get registered under this workspace with the name &lt;ws-name&gt;. &lt;ws-root-directory&gt; must be absolute path.
With option '--from' the URL to a single repository or a file containing multiple URLs can be added and they will be cloned diretly into the workspace. Suitable for the initial setup of a multi-repo project.
With option '--from' the URL to a single repository or a file containing multiple URLs can be added and they will be cloned directly into the workspace. Suitable for the initial setup of a multi-repo project.
--removeworkspace &lt;ws-name&gt;

View file

@ -1,26 +1,39 @@
.\" generated with Ronn-NG/v0.8.0
.\" http://github.com/apjanke/ronn-ng/tree/0.8.0
.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "GIT\-PULL\-REQUEST" "1" "August 2020" "" "Git Extras"
.
.SH "NAME"
\fBgit\-pull\-request\fR \- Create pull request for GitHub project
.
.SH "SYNOPSIS"
\fBgit\-pull\-request\fR [<target branch>]
.
.SH "DESCRIPTION"
Create pull request for a project on GitHub via command line\.
.
.P
A personal access token is required for making the API call to open the pull request(s) in GitHub\. API Documentation here \fI\%https://docs\.github\.com/en/rest/reference/pulls#create\-a\-pull\-request\fR
A personal access token is required for making the API call to open the pull request(s) in GitHub\. API Documentation here \fIhttps://docs\.github\.com/en/rest/reference/pulls#create\-a\-pull\-request\fR
.
.P
Make sure the personal access token has the right \fBOAuth\fR scopes for the repo(s)
.
.P
Use \fBgit config \-\-global \-\-add git\-extras\.github\-personal\-access\-token <your\-personal\-access\-token>\fR
.
.P
If using mutiple accounts, override the global value in the specific repo using \fBgit config git\-extras\.github\-personal\-access\-token <other\-acc\-personal\-access\-token>\fR
If using multiple accounts, override the global value in the specific repo using \fBgit config git\-extras\.github\-personal\-access\-token <other\-acc\-personal\-access\-token>\fR
.
.SH "OPTIONS"
<target branch>
.
.P
The target branch you want to send pull request to\.
.
.SH "EXAMPLES"
.
.nf
$ git pull\-request master
Everything up\-to\-date
@ -31,11 +44,15 @@ Everything up\-to\-date
base [master]:
GitHub two\-factor authentication code (leave blank if not set up):
\|\.\|\.\|\.
\.\.\.
.
.fi
.
.SH "AUTHOR"
Written by Tj Holowaychuk <\fI\%mailto:tj@vision\-media\.ca\fR>
Written by Tj Holowaychuk <\fItj@vision\-media\.ca\fR>
.
.SH "REPORTING BUGS"
<\fI\%https://github\.com/tj/git\-extras/issues\fR>
<\fIhttps://github\.com/tj/git\-extras/issues\fR>
.
.SH "SEE ALSO"
<\fI\%https://github\.com/tj/git\-extras\fR>
<\fIhttps://github\.com/tj/git\-extras\fR>

View file

@ -1,8 +1,8 @@
<!DOCTYPE html>
<html>
<head>
<meta http-equiv='content-type' content='text/html;charset=utf8'>
<meta name='generator' content='Ronn-NG/v0.8.0 (http://github.com/apjanke/ronn-ng/tree/0.8.0)'>
<meta http-equiv='content-type' value='text/html;charset=utf8'>
<meta name='generator' value='Ronn/v0.7.3 (http://github.com/rtomayko/ronn/tree/0.7.3)'>
<title>git-pull-request(1) - Create pull request for GitHub project</title>
<style type='text/css' media='all'>
/* style: man */
@ -69,12 +69,11 @@
<li class='tr'>git-pull-request(1)</li>
</ol>
<h2 id="NAME">NAME</h2>
<h2 id="NAME">NAME</h2>
<p class="man-name">
<code>git-pull-request</code> - <span class="man-whatis">Create pull request for GitHub project</span>
</p>
<h2 id="SYNOPSIS">SYNOPSIS</h2>
<p><code>git-pull-request</code> [&lt;target branch&gt;]</p>
@ -87,9 +86,9 @@
<p>Make sure the personal access token has the right <code>OAuth</code> scopes for the repo(s)</p>
<p>Use <code>git config --global --add git-extras.github-personal-access-token &lt;your-personal-access-token&gt;</code></p>
<p>Use <code>git config --global --add git-extras.github-personal-access-token &lt;your-personal-access-token></code></p>
<p>If using mutiple accounts, override the global value in the specific repo using <code>git config git-extras.github-personal-access-token &lt;other-acc-personal-access-token&gt;</code></p>
<p>If using multiple accounts, override the global value in the specific repo using <code>git config git-extras.github-personal-access-token &lt;other-acc-personal-access-token></code></p>
<h2 id="OPTIONS">OPTIONS</h2>
@ -114,7 +113,7 @@ Everything up-to-date
<h2 id="AUTHOR">AUTHOR</h2>
<p>Written by Tj Holowaychuk &lt;<a href="mailto:tj@vision-media.ca" data-bare-link="true">tj@vision-media.ca</a>&gt;</p>
<p>Written by Tj Holowaychuk &lt;<a href="&#109;&#97;&#105;&#108;&#x74;&#111;&#x3a;&#x74;&#x6a;&#64;&#118;&#x69;&#x73;&#105;&#x6f;&#x6e;&#x2d;&#109;&#x65;&#x64;&#x69;&#97;&#46;&#99;&#97;" data-bare-link="true">&#116;&#x6a;&#x40;&#118;&#x69;&#x73;&#105;&#x6f;&#x6e;&#45;&#109;&#x65;&#x64;&#x69;&#97;&#x2e;&#x63;&#97;</a>&gt;</p>
<h2 id="REPORTING-BUGS">REPORTING BUGS</h2>
@ -124,6 +123,7 @@ Everything up-to-date
<p>&lt;<a href="https://github.com/tj/git-extras" data-bare-link="true">https://github.com/tj/git-extras</a>&gt;</p>
<ol class='man-decor man-foot man foot'>
<li class='tl'></li>
<li class='tc'>August 2020</li>

View file

@ -15,7 +15,7 @@ Make sure the personal access token has the right `OAuth` scopes for the repo(s)
Use `git config --global --add git-extras.github-personal-access-token <your-personal-access-token>`
If using mutiple accounts, override the global value in the specific repo using `git config git-extras.github-personal-access-token <other-acc-personal-access-token>`
If using multiple accounts, override the global value in the specific repo using `git config git-extras.github-personal-access-token <other-acc-personal-access-token>`
## OPTIONS

View file

@ -1,22 +1,22 @@
.\" generated with Ronn/v0.7.3
.\" http://github.com/rtomayko/ronn/tree/0.7.3
.
.TH "GIT\-SUMMARY" "1" "October 2019" "" "Git Extras"
.TH "GIT\-SUMMARY" "1" "August 2020" "" "Git Extras"
.
.SH "NAME"
\fBgit\-summary\fR \- Show repository summary
.
.SH "SYNOPSIS"
\fBgit\-summary\fR [\-\-line] [\-\-dedup\-by\-email] [<commitish>]
\fBgit\-summary\fR [\-\-line] [\-\-dedup\-by\-email] [<committish>]
.
.SH "DESCRIPTION"
Shows a summary of the repository\.
.
.SH "OPTIONS"
<commitish>
<committish>
.
.P
Summarize only the range of commits included in the <commitish>\.
Summarize only the range of commits included in the <committish>\.
.
.P
\-\-dedup\-by\-email
@ -48,7 +48,7 @@ This option can not be used together with \fB\-\-line\fR\.
\-\-line
.
.P
Summarize with lines other than commits\. Any <commitish> is ignored when \-\-line is specified\.
Summarize with lines other than commits\. Any <committish> is ignored when \-\-line is specified\.
.
.SH "EXAMPLES"
Outputs a repo summary:
@ -89,7 +89,7 @@ authors :
.IP "" 0
.
.P
This command can also take a commitish, and will print a summary for the range of commits included in the commitish:
This command can also take a committish, and will print a summary for the range of commits included in the committish:
.
.IP "" 4
.
@ -120,7 +120,7 @@ authors :
.IP "" 0
.
.P
The commitish is ignored when \-\-line is specified\.
The committish is ignored when \-\-line is specified\.
.
.SH "AUTHOR"
Written by Tj Holowaychuk <\fItj@vision\-media\.ca\fR>

View file

@ -76,7 +76,7 @@
<h2 id="SYNOPSIS">SYNOPSIS</h2>
<p><code>git-summary</code> [--line] [--dedup-by-email] [&lt;commitish&gt;]</p>
<p><code>git-summary</code> [--line] [--dedup-by-email] [&lt;committish&gt;]</p>
<h2 id="DESCRIPTION">DESCRIPTION</h2>
@ -84,9 +84,9 @@
<h2 id="OPTIONS">OPTIONS</h2>
<p> &lt;commitish&gt;</p>
<p> &lt;committish&gt;</p>
<p> Summarize only the range of commits included in the &lt;commitish&gt;.</p>
<p> Summarize only the range of commits included in the &lt;committish&gt;.</p>
<p> --dedup-by-email</p>
@ -108,7 +108,7 @@ $ git summary --dedup-by-email
<p> --line</p>
<p> Summarize with lines other than commits.
Any &lt;commitish&gt; is ignored when --line is specified.</p>
Any &lt;committish&gt; is ignored when --line is specified.</p>
<h2 id="EXAMPLES">EXAMPLES</h2>
@ -142,8 +142,8 @@ authors :
1 Matt Colyer
</code></pre>
<p> This command can also take a commitish, and will print a summary for the range
of commits included in the commitish:</p>
<p> This command can also take a committish, and will print a summary for the range
of commits included in the committish:</p>
<pre><code>$ git summary v42..
</code></pre>
@ -158,11 +158,11 @@ authors :
...
</code></pre>
<p> The commitish is ignored when --line is specified.</p>
<p> The committish is ignored when --line is specified.</p>
<h2 id="AUTHOR">AUTHOR</h2>
<p>Written by Tj Holowaychuk &lt;<a href="&#109;&#97;&#105;&#108;&#116;&#x6f;&#x3a;&#116;&#106;&#x40;&#x76;&#105;&#x73;&#x69;&#x6f;&#110;&#45;&#x6d;&#x65;&#x64;&#x69;&#97;&#x2e;&#x63;&#97;" data-bare-link="true">&#116;&#106;&#64;&#x76;&#105;&#115;&#x69;&#111;&#110;&#45;&#x6d;&#x65;&#x64;&#x69;&#97;&#46;&#99;&#97;</a>&gt;</p>
<p>Written by Tj Holowaychuk &lt;<a href="&#109;&#97;&#105;&#108;&#x74;&#x6f;&#58;&#116;&#106;&#x40;&#x76;&#x69;&#x73;&#x69;&#x6f;&#110;&#x2d;&#x6d;&#101;&#x64;&#105;&#x61;&#x2e;&#99;&#97;" data-bare-link="true">&#x74;&#106;&#x40;&#118;&#x69;&#x73;&#105;&#x6f;&#x6e;&#45;&#x6d;&#x65;&#x64;&#x69;&#x61;&#46;&#99;&#97;</a>&gt;</p>
<h2 id="REPORTING-BUGS">REPORTING BUGS</h2>
@ -175,7 +175,7 @@ authors :
<ol class='man-decor man-foot man foot'>
<li class='tl'></li>
<li class='tc'>October 2019</li>
<li class='tc'>August 2020</li>
<li class='tr'>git-summary(1)</li>
</ol>

View file

@ -3,7 +3,7 @@ git-summary(1) -- Show repository summary
## SYNOPSIS
`git-summary` [--line] [--dedup-by-email] [&lt;commitish&gt;]
`git-summary` [--line] [--dedup-by-email] [&lt;committish&gt;]
## DESCRIPTION
@ -11,9 +11,9 @@ Shows a summary of the repository.
## OPTIONS
&lt;commitish&gt;
&lt;committish&gt;
Summarize only the range of commits included in the &lt;commitish&gt;.
Summarize only the range of commits included in the &lt;committish&gt;.
--dedup-by-email
@ -34,7 +34,7 @@ Shows a summary of the repository.
--line
Summarize with lines other than commits.
Any &lt;commitish&gt; is ignored when --line is specified.
Any &lt;committish&gt; is ignored when --line is specified.
## EXAMPLES
@ -67,8 +67,8 @@ Shows a summary of the repository.
1 isaacs
1 Matt Colyer
This command can also take a commitish, and will print a summary for the range
of commits included in the commitish:
This command can also take a committish, and will print a summary for the range
of commits included in the committish:
$ git summary v42..
@ -81,7 +81,7 @@ Shows a summary of the repository.
authors :
...
The commitish is ignored when --line is specified.
The committish is ignored when --line is specified.
## AUTHOR