mirror of
https://github.com/tj/git-extras.git
synced 2026-09-10 15:36:21 -04:00
Merge pull request #713 from pabs3/docs
Updates to the documentation building workflow and docs
This commit is contained in:
commit
d681b972cc
23
Makefile
23
Makefile
|
|
@ -4,6 +4,7 @@ MANPREFIX ?= "$(PREFIX)/share/man/man1"
|
|||
SYSCONFDIR ?= $(PREFIX)/etc
|
||||
BINS = $(wildcard bin/git-*)
|
||||
MANS = $(wildcard man/git-*.md)
|
||||
MAN_BINS = $(filter-out man/git-extras.md, $(MANS))
|
||||
MAN_HTML = $(MANS:.md=.html)
|
||||
MAN_PAGES = $(MANS:.md=.1)
|
||||
CODE_DIR := $(dir $(abspath $(lastword $(MAKEFILE_LIST))))
|
||||
|
|
@ -62,7 +63,27 @@ install:
|
|||
@echo "If you are a zsh user, you may want to 'source $(CODE_DIR)etc/git-extras-completion.zsh'" \
|
||||
"and put this line into ~/.zshrc to enable zsh completion"
|
||||
|
||||
man/%.html: man/%.md
|
||||
man/index.txt: $(MANS)
|
||||
echo '# manuals' > $@.tmp
|
||||
for file in $(sort $^) ; do \
|
||||
extra=$${file%.md} ; \
|
||||
extra=$${extra#man/} ; \
|
||||
echo "$$extra(1) $$extra" >> $@.tmp ; \
|
||||
done
|
||||
mv -f $@.tmp $@
|
||||
|
||||
man/git-extras.md: $(MAN_BINS)
|
||||
ln=$$(awk '/## COMMANDS/{print NR};' $@) ; \
|
||||
awk "NR <= $$ln+1" $@ > $@.tmp
|
||||
for file in $(sort $^) ; do \
|
||||
head -n1 $$file | \
|
||||
sed 's/^/ - **/;s/ -- /** /' >> $@.tmp ; \
|
||||
done
|
||||
ln=$$(awk '/## AUTHOR/{print NR};' $@) ; \
|
||||
awk "NR >= $$ln-1" $@ >> $@.tmp
|
||||
mv -f $@.tmp $@
|
||||
|
||||
man/%.html: man/%.md man/index.txt
|
||||
ronn \
|
||||
--manual "Git Extras" \
|
||||
--html \
|
||||
|
|
|
|||
|
|
@ -7,12 +7,12 @@ To generate documentation:
|
|||
|
||||
1) Start by filling out the 'man-template.md'
|
||||
|
||||
2) Then use a program ronn. [Get ronn from github.](https://github.com/rtomayko/ronn)
|
||||
2) Then install a program ronn. [Get ronn from github.](https://github.com/rtomayko/ronn)
|
||||
|
||||
3) Run ronn:
|
||||
3) Run make:
|
||||
|
||||
```
|
||||
$ ronn <filename>.md
|
||||
$ make -C .. man/git-<command>.{1,html}
|
||||
```
|
||||
|
||||
4) Remember, we use the following naming convention for files:
|
||||
|
|
@ -21,33 +21,6 @@ $ ronn <filename>.md
|
|||
git-<command>.html
|
||||
git-<command>.1
|
||||
git-<command>.md
|
||||
```
|
||||
|
||||
You'll need to rename the html file, as ronn probably inserted a 1 into the filename.
|
||||
|
||||
## EXAMPLE
|
||||
|
||||
```
|
||||
$ ronn git-effort.md
|
||||
|
||||
roff: ./git-effort.1
|
||||
html: ./git-effort.1.html +man
|
||||
|
||||
$ mv git-effort.1.html git-effort.html
|
||||
```
|
||||
|
||||
## SHELL SCRIPT
|
||||
|
||||
Alternatively you can run the `manning-up.sh` automated shell script included in the man folder. The script will recreate the git-extras index based on the list of .md files available before it runs `ronn` against each one to generate the documents as well as renaming the generated `.html` files to their desired form.
|
||||
|
||||
```
|
||||
$ ./manning-up.sh
|
||||
```
|
||||
|
||||
To only (re)generate a specific .md manual template and have `.1.html` renamed to `.html` yau may also use manning-up.sh.
|
||||
|
||||
```
|
||||
$ ./manning-up.sh git-info.md
|
||||
```
|
||||
|
||||
## AUTHOR
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
.\" generated with Ronn/v0.7.3
|
||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||
.
|
||||
.TH "GIT\-ALIAS" "1" "June 2017" "" ""
|
||||
.TH "GIT\-ALIAS" "1" "October 2017" "" "Git Extras"
|
||||
.
|
||||
.SH "NAME"
|
||||
\fBgit\-alias\fR \- Define, search and show aliases
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@
|
|||
|
||||
<ol class='man-decor man-head man head'>
|
||||
<li class='tl'>git-alias(1)</li>
|
||||
<li class='tc'></li>
|
||||
<li class='tc'>Git Extras</li>
|
||||
<li class='tr'>git-alias(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
@ -136,7 +136,7 @@ whois = !sh -c 'git log -i -1 --pretty="format:%an <%ae>
|
|||
|
||||
<ol class='man-decor man-foot man foot'>
|
||||
<li class='tl'></li>
|
||||
<li class='tc'>June 2017</li>
|
||||
<li class='tc'>October 2017</li>
|
||||
<li class='tr'>git-alias(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
.\" generated with Ronn/v0.7.3
|
||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||
.
|
||||
.TH "GIT\-ARCHIVE\-FILE" "1" "December 2016" "" "Git Extras"
|
||||
.TH "GIT\-ARCHIVE\-FILE" "1" "October 2017" "" "Git Extras"
|
||||
.
|
||||
.SH "NAME"
|
||||
\fBgit\-archive\-file\fR \- Export the current HEAD of the git repository to an archive
|
||||
|
|
|
|||
|
|
@ -111,7 +111,7 @@
|
|||
|
||||
<ol class='man-decor man-foot man foot'>
|
||||
<li class='tl'></li>
|
||||
<li class='tc'>December 2016</li>
|
||||
<li class='tc'>October 2017</li>
|
||||
<li class='tr'>git-archive-file(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
.\" generated with Ronn/v0.7.3
|
||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||
.
|
||||
.TH "GIT\-AUTHORS" "1" "October 2016" "" ""
|
||||
.TH "GIT\-AUTHORS" "1" "October 2017" "" "Git Extras"
|
||||
.
|
||||
.SH "NAME"
|
||||
\fBgit\-authors\fR \- Generate authors report
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@
|
|||
|
||||
<ol class='man-decor man-head man head'>
|
||||
<li class='tl'>git-authors(1)</li>
|
||||
<li class='tc'></li>
|
||||
<li class='tc'>Git Extras</li>
|
||||
<li class='tr'>git-authors(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
@ -139,7 +139,7 @@ Leila Muhtasib
|
|||
|
||||
<ol class='man-decor man-foot man foot'>
|
||||
<li class='tl'></li>
|
||||
<li class='tc'>October 2016</li>
|
||||
<li class='tc'>October 2017</li>
|
||||
<li class='tr'>git-authors(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
.\" generated with Ronn/v0.7.3
|
||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||
.
|
||||
.TH "GIT\-BACK" "1" "December 2015" "" ""
|
||||
.TH "GIT\-BACK" "1" "October 2017" "" "Git Extras"
|
||||
.
|
||||
.SH "NAME"
|
||||
\fBgit\-back\fR \- Undo and Stage latest commits
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@
|
|||
|
||||
<ol class='man-decor man-head man head'>
|
||||
<li class='tl'>git-back(1)</li>
|
||||
<li class='tc'></li>
|
||||
<li class='tc'>Git Extras</li>
|
||||
<li class='tr'>git-back(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
@ -115,7 +115,7 @@
|
|||
|
||||
<ol class='man-decor man-foot man foot'>
|
||||
<li class='tl'></li>
|
||||
<li class='tc'>December 2015</li>
|
||||
<li class='tc'>October 2017</li>
|
||||
<li class='tr'>git-back(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
.\" generated with Ronn/v0.7.3
|
||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||
.
|
||||
.TH "GIT\-BUG" "1" "July 2017" "" ""
|
||||
.TH "GIT\-BUG" "1" "October 2017" "" "Git Extras"
|
||||
.
|
||||
.SH "NAME"
|
||||
\fBgit\-bug\fR \- Create bug branch
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@
|
|||
|
||||
<ol class='man-decor man-head man head'>
|
||||
<li class='tl'>git-bug(1)</li>
|
||||
<li class='tc'></li>
|
||||
<li class='tc'>Git Extras</li>
|
||||
<li class='tr'>git-bug(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
@ -126,7 +126,7 @@ Modified by Mark Pitman <<a href="mailto:&#
|
|||
|
||||
<ol class='man-decor man-foot man foot'>
|
||||
<li class='tl'></li>
|
||||
<li class='tc'>July 2017</li>
|
||||
<li class='tc'>October 2017</li>
|
||||
<li class='tr'>git-bug(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
.\" generated with Ronn/v0.7.3
|
||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||
.
|
||||
.TH "GIT\-BULK" "1" "July 2017" "" "Git Extras"
|
||||
.TH "GIT\-BULK" "1" "October 2017" "" "Git Extras"
|
||||
.
|
||||
.SH "NAME"
|
||||
\fBgit\-bulk\fR \- Run git commands on multiple repositories
|
||||
|
|
|
|||
|
|
@ -182,7 +182,7 @@ $ git bulk --purge
|
|||
|
||||
<ol class='man-decor man-foot man foot'>
|
||||
<li class='tl'></li>
|
||||
<li class='tc'>July 2017</li>
|
||||
<li class='tc'>October 2017</li>
|
||||
<li class='tr'>git-bulk(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
.\" generated with Ronn/v0.7.3
|
||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||
.
|
||||
.TH "GIT\-CHANGELOG" "1" "November 2017" "" ""
|
||||
.TH "GIT\-CHANGELOG" "1" "January 2018" "" "Git Extras"
|
||||
.
|
||||
.SH "NAME"
|
||||
\fBgit\-changelog\fR \- Generate a changelog report
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@
|
|||
|
||||
<ol class='man-decor man-head man head'>
|
||||
<li class='tl'>git-changelog(1)</li>
|
||||
<li class='tc'></li>
|
||||
<li class='tc'>Git Extras</li>
|
||||
<li class='tr'>git-changelog(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
@ -184,7 +184,7 @@
|
|||
|
||||
<ol class='man-decor man-foot man foot'>
|
||||
<li class='tl'></li>
|
||||
<li class='tc'>November 2017</li>
|
||||
<li class='tc'>January 2018</li>
|
||||
<li class='tr'>git-changelog(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
.\" generated with Ronn/v0.7.3
|
||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||
.
|
||||
.TH "GIT\-CHORE" "1" "July 2017" "" ""
|
||||
.TH "GIT\-CHORE" "1" "October 2017" "" "Git Extras"
|
||||
.
|
||||
.SH "NAME"
|
||||
\fBgit\-chore\fR \- Create chore branch
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@
|
|||
|
||||
<ol class='man-decor man-head man head'>
|
||||
<li class='tl'>git-chore(1)</li>
|
||||
<li class='tc'></li>
|
||||
<li class='tc'>Git Extras</li>
|
||||
<li class='tr'>git-chore(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
@ -124,7 +124,7 @@ Modified by Mark Pitman <<a href="mailto:&#
|
|||
|
||||
<ol class='man-decor man-foot man foot'>
|
||||
<li class='tl'></li>
|
||||
<li class='tc'>July 2017</li>
|
||||
<li class='tc'>October 2017</li>
|
||||
<li class='tr'>git-chore(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
.\" generated with Ronn/v0.7.3
|
||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||
.
|
||||
.TH "GIT\-CLEAR\-SOFT" "1" "July 2016" "" ""
|
||||
.TH "GIT\-CLEAR\-SOFT" "1" "October 2017" "" "Git Extras"
|
||||
.
|
||||
.SH "NAME"
|
||||
\fBgit\-clear\-soft\fR \- Soft clean up a repository
|
||||
|
|
|
|||
|
|
@ -64,7 +64,7 @@
|
|||
|
||||
<ol class='man-decor man-head man head'>
|
||||
<li class='tl'>git-clear-soft(1)</li>
|
||||
<li class='tc'></li>
|
||||
<li class='tc'>Git Extras</li>
|
||||
<li class='tr'>git-clear-soft(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
@ -105,7 +105,7 @@
|
|||
|
||||
<ol class='man-decor man-foot man foot'>
|
||||
<li class='tl'></li>
|
||||
<li class='tc'>July 2016</li>
|
||||
<li class='tc'>October 2017</li>
|
||||
<li class='tr'>git-clear-soft(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
.\" generated with Ronn/v0.7.3
|
||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||
.
|
||||
.TH "GIT\-CLEAR" "1" "May 2016" "" ""
|
||||
.TH "GIT\-CLEAR" "1" "May 2018" "" "Git Extras"
|
||||
.
|
||||
.SH "NAME"
|
||||
\fBgit\-clear\fR \- Rigorously clean up a repository
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
<head>
|
||||
<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-clear(1) - Rigorously clean up a repository </title>
|
||||
<title>git-clear(1) - Rigorously clean up a repository</title>
|
||||
<style type='text/css' media='all'>
|
||||
/* style: man */
|
||||
body#manpage {margin:0}
|
||||
|
|
@ -64,13 +64,13 @@
|
|||
|
||||
<ol class='man-decor man-head man head'>
|
||||
<li class='tl'>git-clear(1)</li>
|
||||
<li class='tc'></li>
|
||||
<li class='tc'>Git Extras</li>
|
||||
<li class='tr'>git-clear(1)</li>
|
||||
</ol>
|
||||
|
||||
<h2 id="NAME">NAME</h2>
|
||||
<p class="man-name">
|
||||
<code>git-clear</code> - <span class="man-whatis">Rigorously clean up a repository </span>
|
||||
<code>git-clear</code> - <span class="man-whatis">Rigorously clean up a repository</span>
|
||||
</p>
|
||||
|
||||
<h2 id="SYNOPSIS">SYNOPSIS</h2>
|
||||
|
|
@ -105,7 +105,7 @@
|
|||
|
||||
<ol class='man-decor man-foot man foot'>
|
||||
<li class='tl'></li>
|
||||
<li class='tc'>May 2016</li>
|
||||
<li class='tc'>May 2018</li>
|
||||
<li class='tr'>git-clear(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
git-clear(1) -- Rigorously clean up a repository
|
||||
git-clear(1) -- Rigorously clean up a repository
|
||||
================================================
|
||||
|
||||
## SYNOPSIS
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
.\" generated with Ronn/v0.7.3
|
||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||
.
|
||||
.TH "GIT\-COMMITS\-SINCE" "1" "December 2015" "" ""
|
||||
.TH "GIT\-COMMITS\-SINCE" "1" "October 2017" "" "Git Extras"
|
||||
.
|
||||
.SH "NAME"
|
||||
\fBgit\-commits\-since\fR \- Show commit logs since some date
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@
|
|||
|
||||
<ol class='man-decor man-head man head'>
|
||||
<li class='tl'>git-commits-since(1)</li>
|
||||
<li class='tc'></li>
|
||||
<li class='tc'>Git Extras</li>
|
||||
<li class='tr'>git-commits-since(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
@ -126,7 +126,7 @@ TJ Holowaychuk - Merge pull request #129 from nickl-/develop
|
|||
|
||||
<ol class='man-decor man-foot man foot'>
|
||||
<li class='tl'></li>
|
||||
<li class='tc'>December 2015</li>
|
||||
<li class='tc'>October 2017</li>
|
||||
<li class='tr'>git-commits-since(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
.\" generated with Ronn/v0.7.3
|
||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||
.
|
||||
.TH "GIT\-CONTRIB" "1" "December 2015" "" ""
|
||||
.TH "GIT\-CONTRIB" "1" "October 2017" "" "Git Extras"
|
||||
.
|
||||
.SH "NAME"
|
||||
\fBgit\-contrib\fR \- Show user\'s contributions
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@
|
|||
|
||||
<ol class='man-decor man-head man head'>
|
||||
<li class='tl'>git-contrib(1)</li>
|
||||
<li class='tc'></li>
|
||||
<li class='tc'>Git Extras</li>
|
||||
<li class='tr'>git-contrib(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
@ -127,7 +127,7 @@ visionmedia (18):
|
|||
|
||||
<ol class='man-decor man-foot man foot'>
|
||||
<li class='tl'></li>
|
||||
<li class='tc'>December 2015</li>
|
||||
<li class='tc'>October 2017</li>
|
||||
<li class='tr'>git-contrib(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
.\" generated with Ronn/v0.7.3
|
||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||
.
|
||||
.TH "GIT\-COUNT" "1" "December 2015" "" ""
|
||||
.TH "GIT\-COUNT" "1" "October 2017" "" "Git Extras"
|
||||
.
|
||||
.SH "NAME"
|
||||
\fBgit\-count\fR \- Show commit count
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@
|
|||
|
||||
<ol class='man-decor man-head man head'>
|
||||
<li class='tl'>git-count(1)</li>
|
||||
<li class='tc'></li>
|
||||
<li class='tc'>Git Extras</li>
|
||||
<li class='tr'>git-count(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
@ -138,7 +138,7 @@ total 1844
|
|||
|
||||
<ol class='man-decor man-foot man foot'>
|
||||
<li class='tl'></li>
|
||||
<li class='tc'>December 2015</li>
|
||||
<li class='tc'>October 2017</li>
|
||||
<li class='tr'>git-count(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
.\" generated with Ronn/v0.7.3
|
||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||
.
|
||||
.TH "GIT\-CREATE\-BRANCH" "1" "July 2017" "" ""
|
||||
.TH "GIT\-CREATE\-BRANCH" "1" "October 2017" "" "Git Extras"
|
||||
.
|
||||
.SH "NAME"
|
||||
\fBgit\-create\-branch\fR \- Create branches
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@
|
|||
|
||||
<ol class='man-decor man-head man head'>
|
||||
<li class='tl'>git-create-branch(1)</li>
|
||||
<li class='tc'></li>
|
||||
<li class='tc'>Git Extras</li>
|
||||
<li class='tr'>git-create-branch(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
@ -122,7 +122,7 @@ Modified by Mark Pitman <<a href="mailto:&#
|
|||
|
||||
<ol class='man-decor man-foot man foot'>
|
||||
<li class='tl'></li>
|
||||
<li class='tc'>July 2017</li>
|
||||
<li class='tc'>October 2017</li>
|
||||
<li class='tr'>git-create-branch(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
.\" generated with Ronn/v0.7.3
|
||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||
.
|
||||
.TH "GIT\-DELETE\-BRANCH" "1" "December 2015" "" ""
|
||||
.TH "GIT\-DELETE\-BRANCH" "1" "October 2017" "" "Git Extras"
|
||||
.
|
||||
.SH "NAME"
|
||||
\fBgit\-delete\-branch\fR \- Delete branches
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@
|
|||
|
||||
<ol class='man-decor man-head man head'>
|
||||
<li class='tl'>git-delete-branch(1)</li>
|
||||
<li class='tc'></li>
|
||||
<li class='tc'>Git Extras</li>
|
||||
<li class='tr'>git-delete-branch(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
@ -111,7 +111,7 @@ $ git delete-branch integration bug/1234
|
|||
|
||||
<ol class='man-decor man-foot man foot'>
|
||||
<li class='tl'></li>
|
||||
<li class='tc'>December 2015</li>
|
||||
<li class='tc'>October 2017</li>
|
||||
<li class='tr'>git-delete-branch(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
.\" generated with Ronn/v0.7.3
|
||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||
.
|
||||
.TH "GIT\-DELETE\-MERGED\-BRANCHES" "1" "December 2015" "" ""
|
||||
.TH "GIT\-DELETE\-MERGED\-BRANCHES" "1" "October 2017" "" "Git Extras"
|
||||
.
|
||||
.SH "NAME"
|
||||
\fBgit\-delete\-merged\-branches\fR \- Delete merged branches
|
||||
|
|
|
|||
|
|
@ -64,7 +64,7 @@
|
|||
|
||||
<ol class='man-decor man-head man head'>
|
||||
<li class='tl'>git-delete-merged-branches(1)</li>
|
||||
<li class='tc'></li>
|
||||
<li class='tc'>Git Extras</li>
|
||||
<li class='tr'>git-delete-merged-branches(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
@ -102,7 +102,7 @@
|
|||
|
||||
<ol class='man-decor man-foot man foot'>
|
||||
<li class='tl'></li>
|
||||
<li class='tc'>December 2015</li>
|
||||
<li class='tc'>October 2017</li>
|
||||
<li class='tr'>git-delete-merged-branches(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
.\" generated with Ronn/v0.7.3
|
||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||
.
|
||||
.TH "GIT\-DELETE\-SUBMODULE" "1" "December 2015" "" ""
|
||||
.TH "GIT\-DELETE\-SUBMODULE" "1" "April 2018" "" "Git Extras"
|
||||
.
|
||||
.SH "NAME"
|
||||
\fBgit\-delete\-submodule\fR \- Delete submodules
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@
|
|||
|
||||
<ol class='man-decor man-head man head'>
|
||||
<li class='tl'>git-delete-submodule(1)</li>
|
||||
<li class='tc'></li>
|
||||
<li class='tc'>Git Extras</li>
|
||||
<li class='tr'>git-delete-submodule(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
@ -106,7 +106,7 @@
|
|||
|
||||
<ol class='man-decor man-foot man foot'>
|
||||
<li class='tl'></li>
|
||||
<li class='tc'>December 2015</li>
|
||||
<li class='tc'>April 2018</li>
|
||||
<li class='tr'>git-delete-submodule(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
.\" generated with Ronn/v0.7.3
|
||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||
.
|
||||
.TH "GIT\-DELETE\-TAG" "1" "December 2015" "" ""
|
||||
.TH "GIT\-DELETE\-TAG" "1" "October 2017" "" "Git Extras"
|
||||
.
|
||||
.SH "NAME"
|
||||
\fBgit\-delete\-tag\fR \- Delete tags
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@
|
|||
|
||||
<ol class='man-decor man-head man head'>
|
||||
<li class='tl'>git-delete-tag(1)</li>
|
||||
<li class='tc'></li>
|
||||
<li class='tc'>Git Extras</li>
|
||||
<li class='tr'>git-delete-tag(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
@ -110,7 +110,7 @@ $ git delete-tag 0.0.1 0.0.2
|
|||
|
||||
<ol class='man-decor man-foot man foot'>
|
||||
<li class='tl'></li>
|
||||
<li class='tc'>December 2015</li>
|
||||
<li class='tc'>October 2017</li>
|
||||
<li class='tr'>git-delete-tag(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
.\" generated with Ronn/v0.7.3
|
||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||
.
|
||||
.TH "GIT\-DELTA" "1" "December 2015" "" ""
|
||||
.TH "GIT\-DELTA" "1" "October 2017" "" "Git Extras"
|
||||
.
|
||||
.SH "NAME"
|
||||
\fBgit\-delta\fR \- Lists changed files
|
||||
|
|
|
|||
|
|
@ -64,7 +64,7 @@
|
|||
|
||||
<ol class='man-decor man-head man head'>
|
||||
<li class='tl'>git-delta(1)</li>
|
||||
<li class='tc'></li>
|
||||
<li class='tc'>Git Extras</li>
|
||||
<li class='tr'>git-delta(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
@ -108,7 +108,7 @@
|
|||
|
||||
<ol class='man-decor man-foot man foot'>
|
||||
<li class='tl'></li>
|
||||
<li class='tc'>December 2015</li>
|
||||
<li class='tc'>October 2017</li>
|
||||
<li class='tr'>git-delta(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
.\" generated with Ronn/v0.7.3
|
||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||
.
|
||||
.TH "GIT\-EFFORT" "1" "December 2015" "" ""
|
||||
.TH "GIT\-EFFORT" "1" "October 2017" "" "Git Extras"
|
||||
.
|
||||
.SH "NAME"
|
||||
\fBgit\-effort\fR \- Show effort statistics on file(s)
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@
|
|||
|
||||
<ol class='man-decor man-head man head'>
|
||||
<li class='tl'>git-effort(1)</li>
|
||||
<li class='tc'></li>
|
||||
<li class='tc'>Git Extras</li>
|
||||
<li class='tr'>git-effort(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
@ -174,7 +174,7 @@ $ git effort --above 5 bin/* -- --after="one year ago" --author="Leila Muhtasib"
|
|||
|
||||
<ol class='man-decor man-foot man foot'>
|
||||
<li class='tl'></li>
|
||||
<li class='tc'>December 2015</li>
|
||||
<li class='tc'>October 2017</li>
|
||||
<li class='tr'>git-effort(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
.\" generated with Ronn/v0.7.3
|
||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||
.
|
||||
.TH "GIT\-EXTRAS" "1" "February 2018" "" ""
|
||||
.TH "GIT\-EXTRAS" "1" "May 2018" "" "Git Extras"
|
||||
.
|
||||
.SH "NAME"
|
||||
\fBgit\-extras\fR \- Awesome GIT utilities
|
||||
|
|
@ -54,10 +54,10 @@ Self update\.
|
|||
\fBgit\-chore(1)\fR Create chore branch
|
||||
.
|
||||
.IP "\(bu" 4
|
||||
\fBgit\-clear(1)\fR Rigorously clean up a repository
|
||||
\fBgit\-clear\-soft(1)\fR Soft clean up a repository
|
||||
.
|
||||
.IP "\(bu" 4
|
||||
\fBgit\-clear\-soft(1)\fR Soft clean up a repository
|
||||
\fBgit\-clear(1)\fR Rigorously clean up a repository
|
||||
.
|
||||
.IP "\(bu" 4
|
||||
\fBgit\-commits\-since(1)\fR Show commit logs since some date
|
||||
|
|
@ -126,10 +126,10 @@ Self update\.
|
|||
\fBgit\-local\-commits(1)\fR List local commits
|
||||
.
|
||||
.IP "\(bu" 4
|
||||
\fBgit\-locked(1)\fR ls files that have been locked
|
||||
\fBgit\-lock(1)\fR Lock a file excluded from version control
|
||||
.
|
||||
.IP "\(bu" 4
|
||||
\fBgit\-lock(1)\fR Lock a file excluded from version control
|
||||
\fBgit\-locked(1)\fR ls files that have been locked
|
||||
.
|
||||
.IP "\(bu" 4
|
||||
\fBgit\-merge\-into(1)\fR Merge one branch into another
|
||||
|
|
|
|||
|
|
@ -64,7 +64,7 @@
|
|||
|
||||
<ol class='man-decor man-head man head'>
|
||||
<li class='tl'>git-extras(1)</li>
|
||||
<li class='tc'></li>
|
||||
<li class='tc'>Git Extras</li>
|
||||
<li class='tr'>git-extras(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
@ -102,8 +102,8 @@
|
|||
<li> <strong><a class="man-ref" href="git-bulk.html">git-bulk<span class="s">(1)</span></a></strong> Run git commands on multiple repositories</li>
|
||||
<li> <strong><a class="man-ref" href="git-changelog.html">git-changelog<span class="s">(1)</span></a></strong> Generate a changelog report</li>
|
||||
<li> <strong><a class="man-ref" href="git-chore.html">git-chore<span class="s">(1)</span></a></strong> Create chore branch</li>
|
||||
<li> <strong><a class="man-ref" href="git-clear.html">git-clear<span class="s">(1)</span></a></strong> Rigorously clean up a repository</li>
|
||||
<li> <strong><a class="man-ref" href="git-clear-soft.html">git-clear-soft<span class="s">(1)</span></a></strong> Soft clean up a repository</li>
|
||||
<li> <strong><a class="man-ref" href="git-clear.html">git-clear<span class="s">(1)</span></a></strong> Rigorously clean up a repository</li>
|
||||
<li> <strong><a class="man-ref" href="git-commits-since.html">git-commits-since<span class="s">(1)</span></a></strong> Show commit logs since some date</li>
|
||||
<li> <strong><a class="man-ref" href="git-contrib.html">git-contrib<span class="s">(1)</span></a></strong> Show user's contributions</li>
|
||||
<li> <strong><a class="man-ref" href="git-count.html">git-count<span class="s">(1)</span></a></strong> Show commit count</li>
|
||||
|
|
@ -126,8 +126,8 @@
|
|||
<li> <strong><a class="man-ref" href="git-info.html">git-info<span class="s">(1)</span></a></strong> Returns information on current repository</li>
|
||||
<li> <strong><a class="man-ref" href="git-line-summary.html">git-line-summary<span class="s">(1)</span></a></strong> Show repository summary by line</li>
|
||||
<li> <strong><a class="man-ref" href="git-local-commits.html">git-local-commits<span class="s">(1)</span></a></strong> List local commits</li>
|
||||
<li> <strong><a class="man-ref" href="git-locked.html">git-locked<span class="s">(1)</span></a></strong> ls files that have been locked</li>
|
||||
<li> <strong><a class="man-ref" href="git-lock.html">git-lock<span class="s">(1)</span></a></strong> Lock a file excluded from version control</li>
|
||||
<li> <strong><a class="man-ref" href="git-locked.html">git-locked<span class="s">(1)</span></a></strong> ls files that have been locked</li>
|
||||
<li> <strong><a class="man-ref" href="git-merge-into.html">git-merge-into<span class="s">(1)</span></a></strong> Merge one branch into another</li>
|
||||
<li> <strong><a class="man-ref" href="git-merge-repo.html">git-merge-repo<span class="s">(1)</span></a></strong> Merge two repo histories</li>
|
||||
<li> <strong><a class="man-ref" href="git-missing.html">git-missing<span class="s">(1)</span></a></strong> Show commits missing from another branch</li>
|
||||
|
|
@ -177,7 +177,7 @@
|
|||
|
||||
<ol class='man-decor man-foot man foot'>
|
||||
<li class='tl'></li>
|
||||
<li class='tc'>February 2018</li>
|
||||
<li class='tc'>May 2018</li>
|
||||
<li class='tr'>git-extras(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
|
|||
|
|
@ -29,8 +29,8 @@ git-extras(1) -- Awesome GIT utilities
|
|||
- **git-bulk(1)** Run git commands on multiple repositories
|
||||
- **git-changelog(1)** Generate a changelog report
|
||||
- **git-chore(1)** Create chore branch
|
||||
- **git-clear(1)** Rigorously clean up a repository
|
||||
- **git-clear-soft(1)** Soft clean up a repository
|
||||
- **git-clear(1)** Rigorously clean up a repository
|
||||
- **git-commits-since(1)** Show commit logs since some date
|
||||
- **git-contrib(1)** Show user's contributions
|
||||
- **git-count(1)** Show commit count
|
||||
|
|
@ -53,8 +53,8 @@ git-extras(1) -- Awesome GIT utilities
|
|||
- **git-info(1)** Returns information on current repository
|
||||
- **git-line-summary(1)** Show repository summary by line
|
||||
- **git-local-commits(1)** List local commits
|
||||
- **git-locked(1)** ls files that have been locked
|
||||
- **git-lock(1)** Lock a file excluded from version control
|
||||
- **git-locked(1)** ls files that have been locked
|
||||
- **git-merge-into(1)** Merge one branch into another
|
||||
- **git-merge-repo(1)** Merge two repo histories
|
||||
- **git-missing(1)** Show commits missing from another branch
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
.\" generated with Ronn/v0.7.3
|
||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||
.
|
||||
.TH "GIT\-FEATURE" "1" "July 2017" "" ""
|
||||
.TH "GIT\-FEATURE" "1" "October 2017" "" "Git Extras"
|
||||
.
|
||||
.SH "NAME"
|
||||
\fBgit\-feature\fR \- Create/Merge feature branch
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@
|
|||
|
||||
<ol class='man-decor man-head man head'>
|
||||
<li class='tl'>git-feature(1)</li>
|
||||
<li class='tc'></li>
|
||||
<li class='tc'>Git Extras</li>
|
||||
<li class='tr'>git-feature(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
@ -134,7 +134,7 @@ Modified by Mark Pitman <<a href="mailto:
|
|||
|
||||
<ol class='man-decor man-foot man foot'>
|
||||
<li class='tl'></li>
|
||||
<li class='tc'>July 2017</li>
|
||||
<li class='tc'>October 2017</li>
|
||||
<li class='tr'>git-feature(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
.\" generated with Ronn/v0.7.3
|
||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||
.
|
||||
.TH "GIT\-FORCE\-CLONE" "1" "2016-10-29" "" "Git Extras"
|
||||
.TH "GIT\-FORCE\-CLONE" "1" "October 2017" "" "Git Extras"
|
||||
.
|
||||
.SH "NAME"
|
||||
\fBgit\-force\-clone\fR \- overwrite local repositories with clone
|
||||
|
|
|
|||
|
|
@ -135,7 +135,7 @@ arguments will simply be passed through to <code>git clone</code>.</p>
|
|||
|
||||
<ol class='man-decor man-foot man foot'>
|
||||
<li class='tl'></li>
|
||||
<li class='tc'>2016-10-29</li>
|
||||
<li class='tc'>October 2017</li>
|
||||
<li class='tr'>git-force-clone(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
.\" generated with Ronn/v0.7.3
|
||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||
.
|
||||
.TH "GIT\-FORK" "1" "August 2016" "" "Git Extras"
|
||||
.TH "GIT\-FORK" "1" "October 2017" "" "Git Extras"
|
||||
.
|
||||
.SH "NAME"
|
||||
\fBgit\-fork\fR \- Fork a repo on github
|
||||
|
|
|
|||
|
|
@ -143,7 +143,7 @@ $ cd expect.js && git remote -v
|
|||
|
||||
<ol class='man-decor man-foot man foot'>
|
||||
<li class='tl'></li>
|
||||
<li class='tc'>August 2016</li>
|
||||
<li class='tc'>October 2017</li>
|
||||
<li class='tr'>git-fork(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
.\" generated with Ronn/v0.7.3
|
||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||
.
|
||||
.TH "GIT\-FRESH\-BRANCH" "1" "December 2015" "" ""
|
||||
.TH "GIT\-FRESH\-BRANCH" "1" "October 2017" "" "Git Extras"
|
||||
.
|
||||
.SH "NAME"
|
||||
\fBgit\-fresh\-branch\fR \- Create fresh branches
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@
|
|||
|
||||
<ol class='man-decor man-head man head'>
|
||||
<li class='tl'>git-fresh-branch(1)</li>
|
||||
<li class='tc'></li>
|
||||
<li class='tc'>Git Extras</li>
|
||||
<li class='tr'>git-fresh-branch(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
@ -108,7 +108,7 @@
|
|||
|
||||
<ol class='man-decor man-foot man foot'>
|
||||
<li class='tl'></li>
|
||||
<li class='tc'>December 2015</li>
|
||||
<li class='tc'>October 2017</li>
|
||||
<li class='tr'>git-fresh-branch(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
.\" generated with Ronn/v0.7.3
|
||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||
.
|
||||
.TH "GIT\-GH\-PAGES" "1" "December 2015" "" ""
|
||||
.TH "GIT\-GH\-PAGES" "1" "October 2017" "" "Git Extras"
|
||||
.
|
||||
.SH "NAME"
|
||||
\fBgit\-gh\-pages\fR \- Create the GitHub Pages branch
|
||||
|
|
|
|||
|
|
@ -64,7 +64,7 @@
|
|||
|
||||
<ol class='man-decor man-head man head'>
|
||||
<li class='tl'>git-gh-pages(1)</li>
|
||||
<li class='tc'></li>
|
||||
<li class='tc'>Git Extras</li>
|
||||
<li class='tr'>git-gh-pages(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
@ -114,7 +114,7 @@ $
|
|||
|
||||
<ol class='man-decor man-foot man foot'>
|
||||
<li class='tl'></li>
|
||||
<li class='tc'>December 2015</li>
|
||||
<li class='tc'>October 2017</li>
|
||||
<li class='tr'>git-gh-pages(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
.\" generated with Ronn/v0.7.3
|
||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||
.
|
||||
.TH "GIT\-GRAFT" "1" "December 2015" "" ""
|
||||
.TH "GIT\-GRAFT" "1" "October 2017" "" "Git Extras"
|
||||
.
|
||||
.SH "NAME"
|
||||
\fBgit\-graft\fR \- Merge and destroy a given branch
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@
|
|||
|
||||
<ol class='man-decor man-head man head'>
|
||||
<li class='tl'>git-graft(1)</li>
|
||||
<li class='tc'></li>
|
||||
<li class='tc'>Git Extras</li>
|
||||
<li class='tr'>git-graft(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
@ -108,7 +108,7 @@
|
|||
|
||||
<ol class='man-decor man-foot man foot'>
|
||||
<li class='tl'></li>
|
||||
<li class='tc'>December 2015</li>
|
||||
<li class='tc'>October 2017</li>
|
||||
<li class='tr'>git-graft(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
.\" generated with Ronn/v0.7.3
|
||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||
.
|
||||
.TH "GIT\-GUILT" "1" "December 2015" "" ""
|
||||
.TH "GIT\-GUILT" "1" "October 2017" "" "Git Extras"
|
||||
.
|
||||
.SH "NAME"
|
||||
\fBgit\-guilt\fR \- calculate change between two revisions
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@
|
|||
|
||||
<ol class='man-decor man-head man head'>
|
||||
<li class='tl'>git-guilt(1)</li>
|
||||
<li class='tc'></li>
|
||||
<li class='tc'>Git Extras</li>
|
||||
<li class='tr'>git-guilt(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
@ -161,7 +161,7 @@ spacewander +++++++++++++++++++++++++++++++++++++++++++++(112)
|
|||
|
||||
<ol class='man-decor man-foot man foot'>
|
||||
<li class='tl'></li>
|
||||
<li class='tc'>December 2015</li>
|
||||
<li class='tc'>October 2017</li>
|
||||
<li class='tr'>git-guilt(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
.\" generated with Ronn/v0.7.3
|
||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||
.
|
||||
.TH "GIT\-IGNORE\-IO" "1" "December 2015" "" ""
|
||||
.TH "GIT\-IGNORE\-IO" "1" "October 2017" "" "Git Extras"
|
||||
.
|
||||
.SH "NAME"
|
||||
\fBgit\-ignore\-io\fR \- Get sample gitignore file
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@
|
|||
|
||||
<ol class='man-decor man-head man head'>
|
||||
<li class='tl'>git-ignore-io(1)</li>
|
||||
<li class='tc'></li>
|
||||
<li class='tc'>Git Extras</li>
|
||||
<li class='tr'>git-ignore-io(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
@ -165,7 +165,7 @@
|
|||
|
||||
<ol class='man-decor man-foot man foot'>
|
||||
<li class='tl'></li>
|
||||
<li class='tc'>December 2015</li>
|
||||
<li class='tc'>October 2017</li>
|
||||
<li class='tr'>git-ignore-io(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
.\" generated with Ronn/v0.7.3
|
||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||
.
|
||||
.TH "GIT\-IGNORE" "1" "December 2015" "" ""
|
||||
.TH "GIT\-IGNORE" "1" "April 2018" "" "Git Extras"
|
||||
.
|
||||
.SH "NAME"
|
||||
\fBgit\-ignore\fR \- Add \.gitignore patterns
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@
|
|||
|
||||
<ol class='man-decor man-head man head'>
|
||||
<li class='tl'>git-ignore(1)</li>
|
||||
<li class='tc'></li>
|
||||
<li class='tc'>Git Extras</li>
|
||||
<li class='tr'>git-ignore(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
@ -206,7 +206,7 @@ and Nick Lombard <<a href="mailto:g

|
|||
|
||||
<ol class='man-decor man-foot man foot'>
|
||||
<li class='tl'></li>
|
||||
<li class='tc'>December 2015</li>
|
||||
<li class='tc'>April 2018</li>
|
||||
<li class='tr'>git-ignore(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
.\" generated with Ronn/v0.7.3
|
||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||
.
|
||||
.TH "GIT\-INFO" "1" "December 2015" "" ""
|
||||
.TH "GIT\-INFO" "1" "October 2017" "" "Git Extras"
|
||||
.
|
||||
.SH "NAME"
|
||||
\fBgit\-info\fR \- Returns information on current repository
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@
|
|||
|
||||
<ol class='man-decor man-head man head'>
|
||||
<li class='tl'>git-info(1)</li>
|
||||
<li class='tc'></li>
|
||||
<li class='tc'>Git Extras</li>
|
||||
<li class='tr'>git-info(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
@ -158,7 +158,7 @@ branch.master.merge=refs/heads/master
|
|||
|
||||
<ol class='man-decor man-foot man foot'>
|
||||
<li class='tl'></li>
|
||||
<li class='tc'>December 2015</li>
|
||||
<li class='tc'>October 2017</li>
|
||||
<li class='tr'>git-info(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
.\" generated with Ronn/v0.7.3
|
||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||
.
|
||||
.TH "GIT\-LINE\-SUMMARY" "1" "December 2015" "" ""
|
||||
.TH "GIT\-LINE\-SUMMARY" "1" "October 2017" "" "Git Extras"
|
||||
.
|
||||
.SH "NAME"
|
||||
\fBgit\-line\-summary\fR \- Show repository summary by line
|
||||
|
|
|
|||
|
|
@ -64,7 +64,7 @@
|
|||
|
||||
<ol class='man-decor man-head man head'>
|
||||
<li class='tl'>git-line-summary(1)</li>
|
||||
<li class='tc'></li>
|
||||
<li class='tc'>Git Extras</li>
|
||||
<li class='tr'>git-line-summary(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
@ -191,7 +191,7 @@ authors :
|
|||
|
||||
<ol class='man-decor man-foot man foot'>
|
||||
<li class='tl'></li>
|
||||
<li class='tc'>December 2015</li>
|
||||
<li class='tc'>October 2017</li>
|
||||
<li class='tr'>git-line-summary(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
.\" generated with Ronn/v0.7.3
|
||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||
.
|
||||
.TH "GIT\-LOCAL\-COMMITS" "1" "December 2015" "" ""
|
||||
.TH "GIT\-LOCAL\-COMMITS" "1" "October 2017" "" "Git Extras"
|
||||
.
|
||||
.SH "NAME"
|
||||
\fBgit\-local\-commits\fR \- List local commits
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@
|
|||
|
||||
<ol class='man-decor man-head man head'>
|
||||
<li class='tl'>git-local-commits(1)</li>
|
||||
<li class='tc'></li>
|
||||
<li class='tc'>Git Extras</li>
|
||||
<li class='tr'>git-local-commits(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
@ -108,7 +108,7 @@
|
|||
|
||||
<ol class='man-decor man-foot man foot'>
|
||||
<li class='tl'></li>
|
||||
<li class='tc'>December 2015</li>
|
||||
<li class='tc'>October 2017</li>
|
||||
<li class='tr'>git-local-commits(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
.\" generated with Ronn/v0.7.3
|
||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||
.
|
||||
.TH "GIT\-LOCK" "1" "December 2015" "" ""
|
||||
.TH "GIT\-LOCK" "1" "October 2017" "" "Git Extras"
|
||||
.
|
||||
.SH "NAME"
|
||||
\fBgit\-lock\fR \- Lock a file excluded from version control
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@
|
|||
|
||||
<ol class='man-decor man-head man head'>
|
||||
<li class='tl'>git-lock(1)</li>
|
||||
<li class='tc'></li>
|
||||
<li class='tc'>Git Extras</li>
|
||||
<li class='tr'>git-lock(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
@ -108,7 +108,7 @@
|
|||
|
||||
<ol class='man-decor man-foot man foot'>
|
||||
<li class='tl'></li>
|
||||
<li class='tc'>December 2015</li>
|
||||
<li class='tc'>October 2017</li>
|
||||
<li class='tr'>git-lock(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
.\" generated with Ronn/v0.7.3
|
||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||
.
|
||||
.TH "GIT\-LOCKED" "1" "December 2015" "" ""
|
||||
.TH "GIT\-LOCKED" "1" "October 2017" "" "Git Extras"
|
||||
.
|
||||
.SH "NAME"
|
||||
\fBgit\-locked\fR \- ls files that have been locked
|
||||
|
|
|
|||
|
|
@ -64,7 +64,7 @@
|
|||
|
||||
<ol class='man-decor man-head man head'>
|
||||
<li class='tl'>git-locked(1)</li>
|
||||
<li class='tc'></li>
|
||||
<li class='tc'>Git Extras</li>
|
||||
<li class='tr'>git-locked(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
@ -103,7 +103,7 @@ config/database.yml
|
|||
|
||||
<ol class='man-decor man-foot man foot'>
|
||||
<li class='tl'></li>
|
||||
<li class='tc'>December 2015</li>
|
||||
<li class='tc'>October 2017</li>
|
||||
<li class='tr'>git-locked(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
.\" generated with Ronn/v0.7.3
|
||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||
.
|
||||
.TH "GIT\-MERGE\-INTO" "1" "December 2015" "" ""
|
||||
.TH "GIT\-MERGE\-INTO" "1" "October 2017" "" "Git Extras"
|
||||
.
|
||||
.SH "NAME"
|
||||
\fBgit\-merge\-into\fR \- Merge one branch into another
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@
|
|||
|
||||
<ol class='man-decor man-head man head'>
|
||||
<li class='tl'>git-merge-into(1)</li>
|
||||
<li class='tc'></li>
|
||||
<li class='tc'>Git Extras</li>
|
||||
<li class='tr'>git-merge-into(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
@ -135,7 +135,7 @@ branch can be merged fast-forward, add <code>--ff-only</code> to avoid files cha
|
|||
|
||||
<ol class='man-decor man-foot man foot'>
|
||||
<li class='tl'></li>
|
||||
<li class='tc'>December 2015</li>
|
||||
<li class='tc'>October 2017</li>
|
||||
<li class='tr'>git-merge-into(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
.\" generated with Ronn/v0.7.3
|
||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||
.
|
||||
.TH "GIT\-MERGE\-REPO" "1" "December 2015" "" ""
|
||||
.TH "GIT\-MERGE\-REPO" "1" "October 2017" "" "Git Extras"
|
||||
.
|
||||
.SH "NAME"
|
||||
\fBgit\-merge\-repo\fR \- Merge two repo histories
|
||||
|
|
|
|||
|
|
@ -64,7 +64,7 @@
|
|||
|
||||
<ol class='man-decor man-head man head'>
|
||||
<li class='tl'>git-merge-repo(1)</li>
|
||||
<li class='tc'></li>
|
||||
<li class='tc'>Git Extras</li>
|
||||
<li class='tr'>git-merge-repo(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
@ -110,7 +110,7 @@
|
|||
|
||||
<ol class='man-decor man-foot man foot'>
|
||||
<li class='tl'></li>
|
||||
<li class='tc'>December 2015</li>
|
||||
<li class='tc'>October 2017</li>
|
||||
<li class='tr'>git-merge-repo(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
.\" generated with Ronn/v0.7.3
|
||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||
.
|
||||
.TH "GIT\-MISSING" "1" "December 2015" "" ""
|
||||
.TH "GIT\-MISSING" "1" "April 2018" "" "Git Extras"
|
||||
.
|
||||
.SH "NAME"
|
||||
\fBgit\-missing\fR \- Show commits missing from another branch
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@
|
|||
|
||||
<ol class='man-decor man-head man head'>
|
||||
<li class='tl'>git-missing(1)</li>
|
||||
<li class='tc'></li>
|
||||
<li class='tc'>Git Extras</li>
|
||||
<li class='tr'>git-missing(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
@ -128,7 +128,7 @@
|
|||
|
||||
<ol class='man-decor man-foot man foot'>
|
||||
<li class='tl'></li>
|
||||
<li class='tc'>December 2015</li>
|
||||
<li class='tc'>April 2018</li>
|
||||
<li class='tr'>git-missing(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
.\" generated with Ronn/v0.7.3
|
||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||
.
|
||||
.TH "GIT\-MR" "1" "February 2018" "" ""
|
||||
.TH "GIT\-MR" "1" "April 2018" "" "Git Extras"
|
||||
.
|
||||
.SH "NAME"
|
||||
\fBgit\-mr\fR \- Checks out a merge request locally
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@
|
|||
|
||||
<ol class='man-decor man-head man head'>
|
||||
<li class='tl'>git-mr(1)</li>
|
||||
<li class='tc'></li>
|
||||
<li class='tc'>Git Extras</li>
|
||||
<li class='tr'>git-mr(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
@ -121,7 +121,7 @@ Switched to branch 'mr/51'
|
|||
|
||||
<ol class='man-decor man-foot man foot'>
|
||||
<li class='tl'></li>
|
||||
<li class='tc'>February 2018</li>
|
||||
<li class='tc'>April 2018</li>
|
||||
<li class='tr'>git-mr(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
.\" generated with Ronn/v0.7.3
|
||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||
.
|
||||
.TH "GIT\-OBLITERATE" "1" "June 2016" "" ""
|
||||
.TH "GIT\-OBLITERATE" "1" "October 2017" "" "Git Extras"
|
||||
.
|
||||
.SH "NAME"
|
||||
\fBgit\-obliterate\fR \- rewrite past commits to remove some files
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@
|
|||
|
||||
<ol class='man-decor man-head man head'>
|
||||
<li class='tl'>git-obliterate(1)</li>
|
||||
<li class='tc'></li>
|
||||
<li class='tc'>Git Extras</li>
|
||||
<li class='tr'>git-obliterate(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
@ -120,7 +120,7 @@ And it will mess up stash, so <strong>don't have stash when you run <code>git ob
|
|||
|
||||
<ol class='man-decor man-foot man foot'>
|
||||
<li class='tl'></li>
|
||||
<li class='tc'>June 2016</li>
|
||||
<li class='tc'>October 2017</li>
|
||||
<li class='tr'>git-obliterate(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
.\" generated with Ronn/v0.7.3
|
||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||
.
|
||||
.TH "GIT\-PR" "1" "January 2016" "" "Git Extras"
|
||||
.TH "GIT\-PR" "1" "October 2017" "" "Git Extras"
|
||||
.
|
||||
.SH "NAME"
|
||||
\fBgit\-pr\fR \- Checks out a pull request locally
|
||||
|
|
|
|||
|
|
@ -148,7 +148,7 @@ Deleted branch pr/220 (was d34dc0f).
|
|||
|
||||
<ol class='man-decor man-foot man foot'>
|
||||
<li class='tl'></li>
|
||||
<li class='tc'>January 2016</li>
|
||||
<li class='tc'>October 2017</li>
|
||||
<li class='tr'>git-pr(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
.\" generated with Ronn/v0.7.3
|
||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||
.
|
||||
.TH "GIT\-PSYKOREBASE" "1" "December 2015" "" ""
|
||||
.TH "GIT\-PSYKOREBASE" "1" "October 2017" "" "Git Extras"
|
||||
.
|
||||
.SH "NAME"
|
||||
\fBgit\-psykorebase\fR \- Rebase a branch with a merge commit
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@
|
|||
|
||||
<ol class='man-decor man-head man head'>
|
||||
<li class='tl'>git-psykorebase(1)</li>
|
||||
<li class='tc'></li>
|
||||
<li class='tc'>Git Extras</li>
|
||||
<li class='tr'>git-psykorebase(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
@ -128,7 +128,7 @@ Python.</p>
|
|||
|
||||
<ol class='man-decor man-foot man foot'>
|
||||
<li class='tl'></li>
|
||||
<li class='tc'>December 2015</li>
|
||||
<li class='tc'>October 2017</li>
|
||||
<li class='tr'>git-psykorebase(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
.\" generated with Ronn/v0.7.3
|
||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||
.
|
||||
.TH "GIT\-PULL\-REQUEST" "1" "October 2017" "" ""
|
||||
.TH "GIT\-PULL\-REQUEST" "1" "November 2017" "" "Git Extras"
|
||||
.
|
||||
.SH "NAME"
|
||||
\fBgit\-pull\-request\fR \- Create pull request for GitHub project
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@
|
|||
|
||||
<ol class='man-decor man-head man head'>
|
||||
<li class='tl'>git-pull-request(1)</li>
|
||||
<li class='tc'></li>
|
||||
<li class='tc'>Git Extras</li>
|
||||
<li class='tr'>git-pull-request(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
@ -121,7 +121,7 @@ Enter host password for user 'spacewanderlzx@gmail.com':
|
|||
|
||||
<ol class='man-decor man-foot man foot'>
|
||||
<li class='tl'></li>
|
||||
<li class='tc'>October 2017</li>
|
||||
<li class='tc'>November 2017</li>
|
||||
<li class='tr'>git-pull-request(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
.\" generated with Ronn/v0.7.3
|
||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||
.
|
||||
.TH "GIT\-REAUTHOR" "1" "July 2016" "" ""
|
||||
.TH "GIT\-REAUTHOR" "1" "October 2017" "" "Git Extras"
|
||||
.
|
||||
.SH "NAME"
|
||||
\fBgit\-reauthor\fR \- Rewrite history to change author\'s identity
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@
|
|||
|
||||
<ol class='man-decor man-head man head'>
|
||||
<li class='tl'>git-reauthor(1)</li>
|
||||
<li class='tc'></li>
|
||||
<li class='tc'>Git Extras</li>
|
||||
<li class='tr'>git-reauthor(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
@ -174,7 +174,7 @@ Possible type identifiers are: author, committer, both (default)
|
|||
|
||||
<ol class='man-decor man-foot man foot'>
|
||||
<li class='tl'></li>
|
||||
<li class='tc'>July 2016</li>
|
||||
<li class='tc'>October 2017</li>
|
||||
<li class='tr'>git-reauthor(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
.\" generated with Ronn/v0.7.3
|
||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||
.
|
||||
.TH "GIT\-REBASE\-PATCH" "1" "December 2015" "" ""
|
||||
.TH "GIT\-REBASE\-PATCH" "1" "October 2017" "" "Git Extras"
|
||||
.
|
||||
.SH "NAME"
|
||||
\fBgit\-rebase\-patch\fR \- Rebases a patch
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@
|
|||
|
||||
<ol class='man-decor man-head man head'>
|
||||
<li class='tl'>git-rebase-patch(1)</li>
|
||||
<li class='tc'></li>
|
||||
<li class='tc'>Git Extras</li>
|
||||
<li class='tr'>git-rebase-patch(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
@ -126,7 +126,7 @@ Auto-merging README.txt
|
|||
|
||||
<ol class='man-decor man-foot man foot'>
|
||||
<li class='tl'></li>
|
||||
<li class='tc'>December 2015</li>
|
||||
<li class='tc'>October 2017</li>
|
||||
<li class='tr'>git-rebase-patch(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
.\" generated with Ronn/v0.7.3
|
||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||
.
|
||||
.TH "GIT\-REFACTOR" "1" "July 2017" "" ""
|
||||
.TH "GIT\-REFACTOR" "1" "May 2018" "" "Git Extras"
|
||||
.
|
||||
.SH "NAME"
|
||||
\fBgit\-refactor\fR \- Create refactor branch
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@
|
|||
|
||||
<ol class='man-decor man-head man head'>
|
||||
<li class='tl'>git-refactor(1)</li>
|
||||
<li class='tc'></li>
|
||||
<li class='tc'>Git Extras</li>
|
||||
<li class='tr'>git-refactor(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
@ -124,7 +124,7 @@ Modified by Mark Pitman <<a href="mailto:&#
|
|||
|
||||
<ol class='man-decor man-foot man foot'>
|
||||
<li class='tl'></li>
|
||||
<li class='tc'>July 2017</li>
|
||||
<li class='tc'>May 2018</li>
|
||||
<li class='tr'>git-refactor(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
.\" generated with Ronn/v0.7.3
|
||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||
.
|
||||
.TH "GIT\-RELEASE" "1" "February 2018" "" ""
|
||||
.TH "GIT\-RELEASE" "1" "April 2018" "" "Git Extras"
|
||||
.
|
||||
.SH "NAME"
|
||||
\fBgit\-release\fR \- Commit, tag and push changes to the repository
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@
|
|||
|
||||
<ol class='man-decor man-head man head'>
|
||||
<li class='tl'>git-release(1)</li>
|
||||
<li class='tc'></li>
|
||||
<li class='tc'>Git Extras</li>
|
||||
<li class='tr'>git-release(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
@ -161,7 +161,7 @@ Extended by David Hartmann <<a href="mailto:
|
|||
|
||||
<ol class='man-decor man-foot man foot'>
|
||||
<li class='tl'></li>
|
||||
<li class='tc'>February 2018</li>
|
||||
<li class='tc'>April 2018</li>
|
||||
<li class='tr'>git-release(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
.\" generated with Ronn/v0.7.3
|
||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||
.
|
||||
.TH "GIT\-RENAME\-BRANCH" "1" "September 2016" "" ""
|
||||
.TH "GIT\-RENAME\-BRANCH" "1" "October 2017" "" "Git Extras"
|
||||
.
|
||||
.SH "NAME"
|
||||
\fBgit\-rename\-branch\fR \- rename local branch and push to remote
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@
|
|||
|
||||
<ol class='man-decor man-head man head'>
|
||||
<li class='tl'>git-rename-branch(1)</li>
|
||||
<li class='tc'></li>
|
||||
<li class='tc'>Git Extras</li>
|
||||
<li class='tr'>git-rename-branch(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
@ -116,7 +116,7 @@ $ git rename-branch new-name
|
|||
|
||||
<ol class='man-decor man-foot man foot'>
|
||||
<li class='tl'></li>
|
||||
<li class='tc'>September 2016</li>
|
||||
<li class='tc'>October 2017</li>
|
||||
<li class='tr'>git-rename-branch(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue