mirror of
https://github.com/tj/git-extras.git
synced 2026-09-10 07:26:17 -04:00
fix typo
This commit is contained in:
parent
6a455e7d29
commit
34ba1eb083
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -116,7 +116,7 @@ git bulk --listall</p>
|
|||
|
||||
<p> 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>
|
||||
|
||||
<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 <ws-name></p>
|
||||
|
||||
|
|
@ -183,7 +183,7 @@ $ git bulk --purge
|
|||
|
||||
<h2 id="AUTHOR">AUTHOR</h2>
|
||||
|
||||
<p>Written by Niklas Schlimm <<a href="mailto:ns103@hotmail.de" data-bare-link="true">ns103@hotmail.de</a>></p>
|
||||
<p>Written by Niklas Schlimm <<a href="mailto:ns103@hotmail.de" data-bare-link="true">ns103@hotmail.de</a>></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>
|
||||
|
||||
|
|
|
|||
|
|
@ -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 <ws-root-directory> get registered under this workspace with the name <ws-name>. <ws-root-directory> 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 <ws-name>
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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> [<target branch>]</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 <your-personal-access-token></code></p>
|
||||
<p>Use <code>git config --global --add git-extras.github-personal-access-token <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 <other-acc-personal-access-token></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 <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 <<a href="mailto:tj@vision-media.ca" data-bare-link="true">tj@vision-media.ca</a>></p>
|
||||
<p>Written by Tj Holowaychuk <<a href="mailto:tj@vision-media.ca" data-bare-link="true">tj@vision-media.ca</a>></p>
|
||||
|
||||
<h2 id="REPORTING-BUGS">REPORTING BUGS</h2>
|
||||
|
||||
|
|
@ -124,6 +123,7 @@ Everything up-to-date
|
|||
|
||||
<p><<a href="https://github.com/tj/git-extras" data-bare-link="true">https://github.com/tj/git-extras</a>></p>
|
||||
|
||||
|
||||
<ol class='man-decor man-foot man foot'>
|
||||
<li class='tl'></li>
|
||||
<li class='tc'>August 2020</li>
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -76,7 +76,7 @@
|
|||
|
||||
<h2 id="SYNOPSIS">SYNOPSIS</h2>
|
||||
|
||||
<p><code>git-summary</code> [--line] [--dedup-by-email] [<commitish>]</p>
|
||||
<p><code>git-summary</code> [--line] [--dedup-by-email] [<committish>]</p>
|
||||
|
||||
<h2 id="DESCRIPTION">DESCRIPTION</h2>
|
||||
|
||||
|
|
@ -84,9 +84,9 @@
|
|||
|
||||
<h2 id="OPTIONS">OPTIONS</h2>
|
||||
|
||||
<p> <commitish></p>
|
||||
<p> <committish></p>
|
||||
|
||||
<p> Summarize only the range of commits included in the <commitish>.</p>
|
||||
<p> Summarize only the range of commits included in the <committish>.</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 <commitish> is ignored when --line is specified.</p>
|
||||
Any <committish> 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 <<a href="mailto:tj@vision-media.ca" data-bare-link="true">tj@vision-media.ca</a>></p>
|
||||
<p>Written by Tj Holowaychuk <<a href="mailto:tj@vision-media.ca" data-bare-link="true">tj@vision-media.ca</a>></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>
|
||||
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ git-summary(1) -- Show repository summary
|
|||
|
||||
## SYNOPSIS
|
||||
|
||||
`git-summary` [--line] [--dedup-by-email] [<commitish>]
|
||||
`git-summary` [--line] [--dedup-by-email] [<committish>]
|
||||
|
||||
## DESCRIPTION
|
||||
|
||||
|
|
@ -11,9 +11,9 @@ Shows a summary of the repository.
|
|||
|
||||
## OPTIONS
|
||||
|
||||
<commitish>
|
||||
<committish>
|
||||
|
||||
Summarize only the range of commits included in the <commitish>.
|
||||
Summarize only the range of commits included in the <committish>.
|
||||
|
||||
--dedup-by-email
|
||||
|
||||
|
|
@ -34,7 +34,7 @@ Shows a summary of the repository.
|
|||
--line
|
||||
|
||||
Summarize with lines other than commits.
|
||||
Any <commitish> is ignored when --line is specified.
|
||||
Any <committish> 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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue