From a6732ef6db4c2a2624eb683e29d88db7a3f132cb Mon Sep 17 00:00:00 2001 From: Paul Wise Date: Sat, 21 Apr 2018 07:58:32 +0800 Subject: [PATCH 1/7] Remove some trailing whitespace --- man/git-clear.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/man/git-clear.md b/man/git-clear.md index 0239ddd..3475d02 100644 --- a/man/git-clear.md +++ b/man/git-clear.md @@ -1,4 +1,4 @@ -git-clear(1) -- Rigorously clean up a repository +git-clear(1) -- Rigorously clean up a repository ================================================ ## SYNOPSIS From 317e546b0a52f4ddb76874f68a994ea5ef78abd8 Mon Sep 17 00:00:00 2001 From: Paul Wise Date: Sat, 5 May 2018 14:14:37 +0800 Subject: [PATCH 2/7] Remove one of the documentation building tools The two methods build slightly different manual pages. The Makefile based version has better headers so use it. Automatically generate git-extras.md and index.txt when building docs. --- Makefile | 23 ++++++++++++++++++++++- man/Readme.md | 33 +++------------------------------ man/manning-up.sh | 37 ------------------------------------- 3 files changed, 25 insertions(+), 68 deletions(-) delete mode 100755 man/manning-up.sh diff --git a/Makefile b/Makefile index 8c2975f..0843c31 100644 --- a/Makefile +++ b/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 \ diff --git a/man/Readme.md b/man/Readme.md index b547596..07fa070 100644 --- a/man/Readme.md +++ b/man/Readme.md @@ -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 .md +$ make -C .. man/git-.{1,html} ``` 4) Remember, we use the following naming convention for files: @@ -21,33 +21,6 @@ $ ronn .md git-.html git-.1 git-.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 diff --git a/man/manning-up.sh b/man/manning-up.sh deleted file mode 100755 index 290fadd..0000000 --- a/man/manning-up.sh +++ /dev/null @@ -1,37 +0,0 @@ -#!/usr/bin/env bash -set -e - -update_git_extras_index() { - echo '# manuals' > index.txt.tmp - ln=$(awk '/## COMMANDS/{print NR};' ./git-extras.md) - awk "NR <= $ln+1" git-extras.md > git-extras.md.tmp - for file in $(ls git*.md); do - extra=${file/.md/} - spaced=" " - echo "$extra(1)${spaced:${#extra}}$extra" >> index.txt.tmp; - title=$(grep -m 1 $extra"(1) -- " $file) - test "$extra" != "git-extras" && echo " - **"${title/" --"/"**"} >> git-extras.md.tmp - done - ln=$(awk '/## AUTHOR/{print NR};' ./git-extras.md) - awk "NR >= $ln-1" git-extras.md >> git-extras.md.tmp - mv -f index.txt.tmp index.txt - mv -f git-extras.md.tmp git-extras.md -} - -if [ -n "$1" ] -then - if [[ "$1" == git-extras.md ]] - then - update_git_extras_index - fi - - ronn $1 - mv -f ${1/.md/}.1.html ${1/.md/}.html -else - - update_git_extras_index - for file in $(ls git*.md); do - extra=${file/.md/} - ronn $file && mv -f $extra.1.html $extra.html - done -fi From bd6a1fcafe2dd12ad418b6214dad8f39009d2593 Mon Sep 17 00:00:00 2001 From: Paul Wise Date: Sat, 5 May 2018 15:31:24 +0800 Subject: [PATCH 3/7] Documentation rebuild: dates and headers Adds "Git Extras" to all the headers. Updates all the dates to the last modification. --- man/git-alias.1 | 2 +- man/git-alias.html | 4 ++-- man/git-archive-file.1 | 2 +- man/git-archive-file.html | 2 +- man/git-authors.1 | 2 +- man/git-authors.html | 4 ++-- man/git-back.1 | 2 +- man/git-back.html | 4 ++-- man/git-bug.1 | 2 +- man/git-bug.html | 4 ++-- man/git-bulk.1 | 2 +- man/git-bulk.html | 2 +- man/git-changelog.1 | 2 +- man/git-changelog.html | 4 ++-- man/git-chore.1 | 2 +- man/git-chore.html | 4 ++-- man/git-clear-soft.1 | 2 +- man/git-clear-soft.html | 4 ++-- man/git-clear.1 | 2 +- man/git-clear.html | 4 ++-- man/git-commits-since.1 | 2 +- man/git-commits-since.html | 4 ++-- man/git-contrib.1 | 2 +- man/git-contrib.html | 4 ++-- man/git-count.1 | 2 +- man/git-count.html | 4 ++-- man/git-create-branch.1 | 2 +- man/git-create-branch.html | 4 ++-- man/git-delete-branch.1 | 2 +- man/git-delete-branch.html | 4 ++-- man/git-delete-merged-branches.1 | 2 +- man/git-delete-merged-branches.html | 4 ++-- man/git-delete-submodule.1 | 2 +- man/git-delete-submodule.html | 4 ++-- man/git-delete-tag.1 | 2 +- man/git-delete-tag.html | 4 ++-- man/git-delta.1 | 2 +- man/git-delta.html | 4 ++-- man/git-effort.1 | 2 +- man/git-effort.html | 4 ++-- man/git-extras.1 | 2 +- man/git-extras.html | 4 ++-- man/git-feature.1 | 2 +- man/git-feature.html | 4 ++-- man/git-force-clone.1 | 2 +- man/git-force-clone.html | 2 +- man/git-fork.1 | 2 +- man/git-fork.html | 2 +- man/git-fresh-branch.1 | 2 +- man/git-fresh-branch.html | 4 ++-- man/git-gh-pages.1 | 2 +- man/git-gh-pages.html | 4 ++-- man/git-graft.1 | 2 +- man/git-graft.html | 4 ++-- man/git-guilt.1 | 2 +- man/git-guilt.html | 4 ++-- man/git-ignore-io.1 | 2 +- man/git-ignore-io.html | 4 ++-- man/git-ignore.1 | 2 +- man/git-ignore.html | 4 ++-- man/git-info.1 | 2 +- man/git-info.html | 4 ++-- man/git-line-summary.1 | 2 +- man/git-line-summary.html | 4 ++-- man/git-local-commits.1 | 2 +- man/git-local-commits.html | 4 ++-- man/git-lock.1 | 2 +- man/git-lock.html | 4 ++-- man/git-locked.1 | 2 +- man/git-locked.html | 4 ++-- man/git-merge-into.1 | 2 +- man/git-merge-into.html | 4 ++-- man/git-merge-repo.1 | 2 +- man/git-merge-repo.html | 4 ++-- man/git-missing.1 | 2 +- man/git-missing.html | 4 ++-- man/git-mr.1 | 2 +- man/git-mr.html | 4 ++-- man/git-obliterate.1 | 2 +- man/git-obliterate.html | 4 ++-- man/git-pr.1 | 2 +- man/git-pr.html | 2 +- man/git-psykorebase.1 | 2 +- man/git-psykorebase.html | 4 ++-- man/git-pull-request.1 | 2 +- man/git-pull-request.html | 4 ++-- man/git-reauthor.1 | 2 +- man/git-reauthor.html | 4 ++-- man/git-rebase-patch.1 | 2 +- man/git-rebase-patch.html | 4 ++-- man/git-refactor.1 | 2 +- man/git-refactor.html | 4 ++-- man/git-release.1 | 2 +- man/git-release.html | 4 ++-- man/git-rename-branch.1 | 2 +- man/git-rename-branch.html | 4 ++-- man/git-rename-tag.1 | 2 +- man/git-rename-tag.html | 4 ++-- man/git-repl.1 | 2 +- man/git-repl.html | 2 +- man/git-reset-file.1 | 2 +- man/git-reset-file.html | 4 ++-- man/git-root.1 | 2 +- man/git-root.html | 4 ++-- man/git-scp.1 | 2 +- man/git-scp.html | 4 ++-- man/git-sed.1 | 2 +- man/git-sed.html | 4 ++-- man/git-setup.1 | 2 +- man/git-setup.html | 4 ++-- man/git-show-merged-branches.1 | 2 +- man/git-show-merged-branches.html | 4 ++-- man/git-show-tree.1 | 2 +- man/git-show-tree.html | 4 ++-- man/git-show-unmerged-branches.1 | 2 +- man/git-show-unmerged-branches.html | 4 ++-- man/git-squash.1 | 2 +- man/git-squash.html | 4 ++-- man/git-stamp.1 | 2 +- man/git-stamp.html | 4 ++-- man/git-standup.1 | 2 +- man/git-standup.html | 4 ++-- man/git-summary.1 | 2 +- man/git-summary.html | 4 ++-- man/git-sync.1 | 2 +- man/git-sync.html | 4 ++-- man/git-touch.1 | 2 +- man/git-touch.html | 4 ++-- man/git-undo.1 | 2 +- man/git-undo.html | 4 ++-- man/git-unlock.1 | 2 +- man/git-unlock.html | 4 ++-- 132 files changed, 192 insertions(+), 192 deletions(-) diff --git a/man/git-alias.1 b/man/git-alias.1 index dde2856..1d71eab 100644 --- a/man/git-alias.1 +++ b/man/git-alias.1 @@ -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 diff --git a/man/git-alias.html b/man/git-alias.html index b95759a..708de5d 100644 --- a/man/git-alias.html +++ b/man/git-alias.html @@ -65,7 +65,7 @@
  1. git-alias(1)
  2. -
  3. +
  4. Git Extras
  5. git-alias(1)
@@ -136,7 +136,7 @@ whois = !sh -c 'git log -i -1 --pretty="format:%an <%ae>
  1. -
  2. June 2017
  3. +
  4. October 2017
  5. git-alias(1)
diff --git a/man/git-archive-file.1 b/man/git-archive-file.1 index 9405813..6022939 100644 --- a/man/git-archive-file.1 +++ b/man/git-archive-file.1 @@ -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 diff --git a/man/git-archive-file.html b/man/git-archive-file.html index 4e2a636..63ba060 100644 --- a/man/git-archive-file.html +++ b/man/git-archive-file.html @@ -111,7 +111,7 @@
  1. -
  2. December 2016
  3. +
  4. October 2017
  5. git-archive-file(1)
diff --git a/man/git-authors.1 b/man/git-authors.1 index f0a0477..edebfd9 100644 --- a/man/git-authors.1 +++ b/man/git-authors.1 @@ -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 diff --git a/man/git-authors.html b/man/git-authors.html index e15abc2..185f3ef 100644 --- a/man/git-authors.html +++ b/man/git-authors.html @@ -65,7 +65,7 @@
  1. git-authors(1)
  2. -
  3. +
  4. Git Extras
  5. git-authors(1)
@@ -139,7 +139,7 @@ Leila Muhtasib
  1. -
  2. October 2016
  3. +
  4. October 2017
  5. git-authors(1)
diff --git a/man/git-back.1 b/man/git-back.1 index b88a83d..ca873a0 100644 --- a/man/git-back.1 +++ b/man/git-back.1 @@ -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 diff --git a/man/git-back.html b/man/git-back.html index 8ff46e6..3ed0e15 100644 --- a/man/git-back.html +++ b/man/git-back.html @@ -65,7 +65,7 @@
  1. git-back(1)
  2. -
  3. +
  4. Git Extras
  5. git-back(1)
@@ -115,7 +115,7 @@
  1. -
  2. December 2015
  3. +
  4. October 2017
  5. git-back(1)
diff --git a/man/git-bug.1 b/man/git-bug.1 index 6bc8966..ee581e1 100644 --- a/man/git-bug.1 +++ b/man/git-bug.1 @@ -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 diff --git a/man/git-bug.html b/man/git-bug.html index 64bd56f..f4df38c 100644 --- a/man/git-bug.html +++ b/man/git-bug.html @@ -65,7 +65,7 @@
  1. git-bug(1)
  2. -
  3. +
  4. Git Extras
  5. git-bug(1)
@@ -126,7 +126,7 @@ Modified by Mark Pitman <
  • -
  • July 2017
  • +
  • October 2017
  • git-bulk(1)
  • diff --git a/man/git-changelog.1 b/man/git-changelog.1 index d651101..88397bc 100644 --- a/man/git-changelog.1 +++ b/man/git-changelog.1 @@ -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 diff --git a/man/git-changelog.html b/man/git-changelog.html index 34db05f..e2c8cba 100644 --- a/man/git-changelog.html +++ b/man/git-changelog.html @@ -65,7 +65,7 @@
    1. git-changelog(1)
    2. -
    3. +
    4. Git Extras
    5. git-changelog(1)
    @@ -184,7 +184,7 @@
    1. -
    2. November 2017
    3. +
    4. January 2018
    5. git-changelog(1)
    diff --git a/man/git-chore.1 b/man/git-chore.1 index 25ca64f..bc45893 100644 --- a/man/git-chore.1 +++ b/man/git-chore.1 @@ -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 diff --git a/man/git-chore.html b/man/git-chore.html index f41c6a5..7cbe08b 100644 --- a/man/git-chore.html +++ b/man/git-chore.html @@ -65,7 +65,7 @@
    1. git-chore(1)
    2. -
    3. +
    4. Git Extras
    5. git-chore(1)
    @@ -124,7 +124,7 @@ Modified by Mark Pitman <
  • git-clear-soft(1)
  • -
  • +
  • Git Extras
  • git-clear-soft(1)
  • @@ -105,7 +105,7 @@
    1. -
    2. July 2016
    3. +
    4. October 2017
    5. git-clear-soft(1)
    diff --git a/man/git-clear.1 b/man/git-clear.1 index fede733..7c00138 100644 --- a/man/git-clear.1 +++ b/man/git-clear.1 @@ -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 diff --git a/man/git-clear.html b/man/git-clear.html index ec57152..cbde5ba 100644 --- a/man/git-clear.html +++ b/man/git-clear.html @@ -64,7 +64,7 @@
    1. git-clear(1)
    2. -
    3. +
    4. Git Extras
    5. git-clear(1)
    @@ -105,7 +105,7 @@
    1. -
    2. May 2016
    3. +
    4. May 2018
    5. git-clear(1)
    diff --git a/man/git-commits-since.1 b/man/git-commits-since.1 index fa98e0e..93bd443 100644 --- a/man/git-commits-since.1 +++ b/man/git-commits-since.1 @@ -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 diff --git a/man/git-commits-since.html b/man/git-commits-since.html index 260d0bf..e29d469 100644 --- a/man/git-commits-since.html +++ b/man/git-commits-since.html @@ -65,7 +65,7 @@
    1. git-commits-since(1)
    2. -
    3. +
    4. Git Extras
    5. git-commits-since(1)
    @@ -126,7 +126,7 @@ TJ Holowaychuk - Merge pull request #129 from nickl-/develop
    1. -
    2. December 2015
    3. +
    4. October 2017
    5. git-commits-since(1)
    diff --git a/man/git-contrib.1 b/man/git-contrib.1 index 5318590..20bbbc3 100644 --- a/man/git-contrib.1 +++ b/man/git-contrib.1 @@ -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 diff --git a/man/git-contrib.html b/man/git-contrib.html index 6ed9256..6b76ba8 100644 --- a/man/git-contrib.html +++ b/man/git-contrib.html @@ -65,7 +65,7 @@
    1. git-contrib(1)
    2. -
    3. +
    4. Git Extras
    5. git-contrib(1)
    @@ -127,7 +127,7 @@ visionmedia (18):
    1. -
    2. December 2015
    3. +
    4. October 2017
    5. git-contrib(1)
    diff --git a/man/git-count.1 b/man/git-count.1 index 88b273b..7deace3 100644 --- a/man/git-count.1 +++ b/man/git-count.1 @@ -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 diff --git a/man/git-count.html b/man/git-count.html index ed205a6..6afd1e1 100644 --- a/man/git-count.html +++ b/man/git-count.html @@ -65,7 +65,7 @@
    1. git-count(1)
    2. -
    3. +
    4. Git Extras
    5. git-count(1)
    @@ -138,7 +138,7 @@ total 1844
    1. -
    2. December 2015
    3. +
    4. October 2017
    5. git-count(1)
    diff --git a/man/git-create-branch.1 b/man/git-create-branch.1 index c20cb95..916b9a2 100644 --- a/man/git-create-branch.1 +++ b/man/git-create-branch.1 @@ -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 diff --git a/man/git-create-branch.html b/man/git-create-branch.html index 8bc8d4b..d84dcfc 100644 --- a/man/git-create-branch.html +++ b/man/git-create-branch.html @@ -66,7 +66,7 @@
    1. git-create-branch(1)
    2. -
    3. +
    4. Git Extras
    5. git-create-branch(1)
    @@ -122,7 +122,7 @@ Modified by Mark Pitman <
  • git-delete-branch(1)
  • -
  • +
  • Git Extras
  • git-delete-branch(1)
  • @@ -111,7 +111,7 @@ $ git delete-branch integration bug/1234
    1. -
    2. December 2015
    3. +
    4. October 2017
    5. git-delete-branch(1)
    diff --git a/man/git-delete-merged-branches.1 b/man/git-delete-merged-branches.1 index 694ffbb..590879f 100644 --- a/man/git-delete-merged-branches.1 +++ b/man/git-delete-merged-branches.1 @@ -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 diff --git a/man/git-delete-merged-branches.html b/man/git-delete-merged-branches.html index a3a10c3..c1a2a8f 100644 --- a/man/git-delete-merged-branches.html +++ b/man/git-delete-merged-branches.html @@ -64,7 +64,7 @@
    1. git-delete-merged-branches(1)
    2. -
    3. +
    4. Git Extras
    5. git-delete-merged-branches(1)
    @@ -102,7 +102,7 @@
    1. -
    2. December 2015
    3. +
    4. October 2017
    5. git-delete-merged-branches(1)
    diff --git a/man/git-delete-submodule.1 b/man/git-delete-submodule.1 index 5cca72c..e8d793d 100644 --- a/man/git-delete-submodule.1 +++ b/man/git-delete-submodule.1 @@ -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 diff --git a/man/git-delete-submodule.html b/man/git-delete-submodule.html index ada61c7..9f7da92 100644 --- a/man/git-delete-submodule.html +++ b/man/git-delete-submodule.html @@ -65,7 +65,7 @@
    1. git-delete-submodule(1)
    2. -
    3. +
    4. Git Extras
    5. git-delete-submodule(1)
    @@ -106,7 +106,7 @@
    1. -
    2. December 2015
    3. +
    4. April 2018
    5. git-delete-submodule(1)
    diff --git a/man/git-delete-tag.1 b/man/git-delete-tag.1 index 6aca8f8..cc5b9b6 100644 --- a/man/git-delete-tag.1 +++ b/man/git-delete-tag.1 @@ -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 diff --git a/man/git-delete-tag.html b/man/git-delete-tag.html index 67421c2..9e17ad6 100644 --- a/man/git-delete-tag.html +++ b/man/git-delete-tag.html @@ -65,7 +65,7 @@
    1. git-delete-tag(1)
    2. -
    3. +
    4. Git Extras
    5. git-delete-tag(1)
    @@ -110,7 +110,7 @@ $ git delete-tag 0.0.1 0.0.2
    1. -
    2. December 2015
    3. +
    4. October 2017
    5. git-delete-tag(1)
    diff --git a/man/git-delta.1 b/man/git-delta.1 index 6a0f771..ffcf83c 100644 --- a/man/git-delta.1 +++ b/man/git-delta.1 @@ -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 diff --git a/man/git-delta.html b/man/git-delta.html index 274c53e..c054b35 100644 --- a/man/git-delta.html +++ b/man/git-delta.html @@ -64,7 +64,7 @@
    1. git-delta(1)
    2. -
    3. +
    4. Git Extras
    5. git-delta(1)
    @@ -108,7 +108,7 @@
    1. -
    2. December 2015
    3. +
    4. October 2017
    5. git-delta(1)
    diff --git a/man/git-effort.1 b/man/git-effort.1 index f1055ce..96a4b82 100644 --- a/man/git-effort.1 +++ b/man/git-effort.1 @@ -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) diff --git a/man/git-effort.html b/man/git-effort.html index 78053d6..0e49da9 100644 --- a/man/git-effort.html +++ b/man/git-effort.html @@ -65,7 +65,7 @@
    1. git-effort(1)
    2. -
    3. +
    4. Git Extras
    5. git-effort(1)
    @@ -174,7 +174,7 @@ $ git effort --above 5 bin/* -- --after="one year ago" --author="Leila Muhtasib"
    1. -
    2. December 2015
    3. +
    4. October 2017
    5. git-effort(1)
    diff --git a/man/git-extras.1 b/man/git-extras.1 index 0251270..b7d145a 100644 --- a/man/git-extras.1 +++ b/man/git-extras.1 @@ -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 diff --git a/man/git-extras.html b/man/git-extras.html index 2f2b55a..9d1b4c3 100644 --- a/man/git-extras.html +++ b/man/git-extras.html @@ -64,7 +64,7 @@
    1. git-extras(1)
    2. -
    3. +
    4. Git Extras
    5. git-extras(1)
    @@ -177,7 +177,7 @@
    1. -
    2. February 2018
    3. +
    4. May 2018
    5. git-extras(1)
    diff --git a/man/git-feature.1 b/man/git-feature.1 index 7c39fdc..ae41d0a 100644 --- a/man/git-feature.1 +++ b/man/git-feature.1 @@ -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 diff --git a/man/git-feature.html b/man/git-feature.html index d614bb2..9fbfbf8 100644 --- a/man/git-feature.html +++ b/man/git-feature.html @@ -65,7 +65,7 @@
    1. git-feature(1)
    2. -
    3. +
    4. Git Extras
    5. git-feature(1)
    @@ -134,7 +134,7 @@ Modified by Mark Pitman <
    git clone.

    1. -
    2. 2016-10-29
    3. +
    4. October 2017
    5. git-force-clone(1)
    diff --git a/man/git-fork.1 b/man/git-fork.1 index e3c4068..777a38c 100644 --- a/man/git-fork.1 +++ b/man/git-fork.1 @@ -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 diff --git a/man/git-fork.html b/man/git-fork.html index 06b5b44..9c68ce3 100644 --- a/man/git-fork.html +++ b/man/git-fork.html @@ -143,7 +143,7 @@ $ cd expect.js && git remote -v
    1. -
    2. August 2016
    3. +
    4. October 2017
    5. git-fork(1)
    diff --git a/man/git-fresh-branch.1 b/man/git-fresh-branch.1 index 1a94f99..ead17d4 100644 --- a/man/git-fresh-branch.1 +++ b/man/git-fresh-branch.1 @@ -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 diff --git a/man/git-fresh-branch.html b/man/git-fresh-branch.html index a61c641..aec1081 100644 --- a/man/git-fresh-branch.html +++ b/man/git-fresh-branch.html @@ -65,7 +65,7 @@
    1. git-fresh-branch(1)
    2. -
    3. +
    4. Git Extras
    5. git-fresh-branch(1)
    @@ -108,7 +108,7 @@
    1. -
    2. December 2015
    3. +
    4. October 2017
    5. git-fresh-branch(1)
    diff --git a/man/git-gh-pages.1 b/man/git-gh-pages.1 index 6be153a..e0ae7eb 100644 --- a/man/git-gh-pages.1 +++ b/man/git-gh-pages.1 @@ -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 diff --git a/man/git-gh-pages.html b/man/git-gh-pages.html index 8f87494..8751c32 100644 --- a/man/git-gh-pages.html +++ b/man/git-gh-pages.html @@ -64,7 +64,7 @@
    1. git-gh-pages(1)
    2. -
    3. +
    4. Git Extras
    5. git-gh-pages(1)
    @@ -114,7 +114,7 @@ $
    1. -
    2. December 2015
    3. +
    4. October 2017
    5. git-gh-pages(1)
    diff --git a/man/git-graft.1 b/man/git-graft.1 index bdea361..70be4bb 100644 --- a/man/git-graft.1 +++ b/man/git-graft.1 @@ -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 diff --git a/man/git-graft.html b/man/git-graft.html index 5e343d7..b055aee 100644 --- a/man/git-graft.html +++ b/man/git-graft.html @@ -65,7 +65,7 @@
    1. git-graft(1)
    2. -
    3. +
    4. Git Extras
    5. git-graft(1)
    @@ -108,7 +108,7 @@
    1. -
    2. December 2015
    3. +
    4. October 2017
    5. git-graft(1)
    diff --git a/man/git-guilt.1 b/man/git-guilt.1 index 833bf12..d4dd3a8 100644 --- a/man/git-guilt.1 +++ b/man/git-guilt.1 @@ -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 diff --git a/man/git-guilt.html b/man/git-guilt.html index 6461b94..0a8f076 100644 --- a/man/git-guilt.html +++ b/man/git-guilt.html @@ -65,7 +65,7 @@
    1. git-guilt(1)
    2. -
    3. +
    4. Git Extras
    5. git-guilt(1)
    @@ -161,7 +161,7 @@ spacewander +++++++++++++++++++++++++++++++++++++++++++++(112)
    1. -
    2. December 2015
    3. +
    4. October 2017
    5. git-guilt(1)
    diff --git a/man/git-ignore-io.1 b/man/git-ignore-io.1 index 4bdd82c..e7f09f5 100644 --- a/man/git-ignore-io.1 +++ b/man/git-ignore-io.1 @@ -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 diff --git a/man/git-ignore-io.html b/man/git-ignore-io.html index fe2f549..fe36e17 100644 --- a/man/git-ignore-io.html +++ b/man/git-ignore-io.html @@ -65,7 +65,7 @@
    1. git-ignore-io(1)
    2. -
    3. +
    4. Git Extras
    5. git-ignore-io(1)
    @@ -165,7 +165,7 @@
    1. -
    2. December 2015
    3. +
    4. October 2017
    5. git-ignore-io(1)
    diff --git a/man/git-ignore.1 b/man/git-ignore.1 index 63006d9..2938834 100644 --- a/man/git-ignore.1 +++ b/man/git-ignore.1 @@ -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 diff --git a/man/git-ignore.html b/man/git-ignore.html index dec1139..c930310 100644 --- a/man/git-ignore.html +++ b/man/git-ignore.html @@ -65,7 +65,7 @@
    1. git-ignore(1)
    2. -
    3. +
    4. Git Extras
    5. git-ignore(1)
    @@ -202,7 +202,7 @@ and Nick Lombard <
  • git-info(1)
  • -
  • +
  • Git Extras
  • git-info(1)
  • @@ -158,7 +158,7 @@ branch.master.merge=refs/heads/master
    1. -
    2. December 2015
    3. +
    4. October 2017
    5. git-info(1)
    diff --git a/man/git-line-summary.1 b/man/git-line-summary.1 index 6655815..cf3fb7f 100644 --- a/man/git-line-summary.1 +++ b/man/git-line-summary.1 @@ -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 diff --git a/man/git-line-summary.html b/man/git-line-summary.html index e9db856..349a860 100644 --- a/man/git-line-summary.html +++ b/man/git-line-summary.html @@ -64,7 +64,7 @@
    1. git-line-summary(1)
    2. -
    3. +
    4. Git Extras
    5. git-line-summary(1)
    @@ -191,7 +191,7 @@ authors :
    1. -
    2. December 2015
    3. +
    4. October 2017
    5. git-line-summary(1)
    diff --git a/man/git-local-commits.1 b/man/git-local-commits.1 index f58785a..8992534 100644 --- a/man/git-local-commits.1 +++ b/man/git-local-commits.1 @@ -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 diff --git a/man/git-local-commits.html b/man/git-local-commits.html index ab34137..4320299 100644 --- a/man/git-local-commits.html +++ b/man/git-local-commits.html @@ -65,7 +65,7 @@
    1. git-local-commits(1)
    2. -
    3. +
    4. Git Extras
    5. git-local-commits(1)
    @@ -108,7 +108,7 @@
    1. -
    2. December 2015
    3. +
    4. October 2017
    5. git-local-commits(1)
    diff --git a/man/git-lock.1 b/man/git-lock.1 index e4b5ba5..3a0ae46 100644 --- a/man/git-lock.1 +++ b/man/git-lock.1 @@ -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 diff --git a/man/git-lock.html b/man/git-lock.html index 04472ec..c423ba2 100644 --- a/man/git-lock.html +++ b/man/git-lock.html @@ -65,7 +65,7 @@
    1. git-lock(1)
    2. -
    3. +
    4. Git Extras
    5. git-lock(1)
    @@ -108,7 +108,7 @@
    1. -
    2. December 2015
    3. +
    4. October 2017
    5. git-lock(1)
    diff --git a/man/git-locked.1 b/man/git-locked.1 index 36684c6..fac6aa5 100644 --- a/man/git-locked.1 +++ b/man/git-locked.1 @@ -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 diff --git a/man/git-locked.html b/man/git-locked.html index 8957ed5..9081a09 100644 --- a/man/git-locked.html +++ b/man/git-locked.html @@ -64,7 +64,7 @@
    1. git-locked(1)
    2. -
    3. +
    4. Git Extras
    5. git-locked(1)
    @@ -103,7 +103,7 @@ config/database.yml
    1. -
    2. December 2015
    3. +
    4. October 2017
    5. git-locked(1)
    diff --git a/man/git-merge-into.1 b/man/git-merge-into.1 index aada165..2ae9cfc 100644 --- a/man/git-merge-into.1 +++ b/man/git-merge-into.1 @@ -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 diff --git a/man/git-merge-into.html b/man/git-merge-into.html index c2fb41b..d44c1f3 100644 --- a/man/git-merge-into.html +++ b/man/git-merge-into.html @@ -65,7 +65,7 @@
    1. git-merge-into(1)
    2. -
    3. +
    4. Git Extras
    5. git-merge-into(1)
    @@ -135,7 +135,7 @@ branch can be merged fast-forward, add --ff-only to avoid files cha
    1. -
    2. December 2015
    3. +
    4. October 2017
    5. git-merge-into(1)
    diff --git a/man/git-merge-repo.1 b/man/git-merge-repo.1 index 4fa90f2..4bab5fd 100644 --- a/man/git-merge-repo.1 +++ b/man/git-merge-repo.1 @@ -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 diff --git a/man/git-merge-repo.html b/man/git-merge-repo.html index a91fdb8..f9164c2 100644 --- a/man/git-merge-repo.html +++ b/man/git-merge-repo.html @@ -64,7 +64,7 @@
    1. git-merge-repo(1)
    2. -
    3. +
    4. Git Extras
    5. git-merge-repo(1)
    @@ -110,7 +110,7 @@
    1. -
    2. December 2015
    3. +
    4. October 2017
    5. git-merge-repo(1)
    diff --git a/man/git-missing.1 b/man/git-missing.1 index 71b0341..2e82e7a 100644 --- a/man/git-missing.1 +++ b/man/git-missing.1 @@ -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 diff --git a/man/git-missing.html b/man/git-missing.html index 63a0095..427d924 100644 --- a/man/git-missing.html +++ b/man/git-missing.html @@ -65,7 +65,7 @@
    1. git-missing(1)
    2. -
    3. +
    4. Git Extras
    5. git-missing(1)
    @@ -128,7 +128,7 @@
    1. -
    2. December 2015
    3. +
    4. April 2018
    5. git-missing(1)
    diff --git a/man/git-mr.1 b/man/git-mr.1 index 5306f15..d5483b4 100644 --- a/man/git-mr.1 +++ b/man/git-mr.1 @@ -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 diff --git a/man/git-mr.html b/man/git-mr.html index ab3a340..cb90daf 100644 --- a/man/git-mr.html +++ b/man/git-mr.html @@ -65,7 +65,7 @@
    1. git-mr(1)
    2. -
    3. +
    4. Git Extras
    5. git-mr(1)
    @@ -121,7 +121,7 @@ Switched to branch 'mr/51'
    1. -
    2. February 2018
    3. +
    4. April 2018
    5. git-mr(1)
    diff --git a/man/git-obliterate.1 b/man/git-obliterate.1 index b52276b..74032b2 100644 --- a/man/git-obliterate.1 +++ b/man/git-obliterate.1 @@ -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 diff --git a/man/git-obliterate.html b/man/git-obliterate.html index f78aeef..e3c677a 100644 --- a/man/git-obliterate.html +++ b/man/git-obliterate.html @@ -65,7 +65,7 @@
    1. git-obliterate(1)
    2. -
    3. +
    4. Git Extras
    5. git-obliterate(1)
    @@ -120,7 +120,7 @@ And it will mess up stash, so don't have stash when you run git ob
    1. -
    2. June 2016
    3. +
    4. October 2017
    5. git-obliterate(1)
    diff --git a/man/git-pr.1 b/man/git-pr.1 index a7df509..34f10fe 100644 --- a/man/git-pr.1 +++ b/man/git-pr.1 @@ -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 diff --git a/man/git-pr.html b/man/git-pr.html index a6a4365..a7d6301 100644 --- a/man/git-pr.html +++ b/man/git-pr.html @@ -148,7 +148,7 @@ Deleted branch pr/220 (was d34dc0f).
    1. -
    2. January 2016
    3. +
    4. October 2017
    5. git-pr(1)
    diff --git a/man/git-psykorebase.1 b/man/git-psykorebase.1 index 71769d9..4eb81a2 100644 --- a/man/git-psykorebase.1 +++ b/man/git-psykorebase.1 @@ -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 diff --git a/man/git-psykorebase.html b/man/git-psykorebase.html index 6e1e89e..e69ae64 100644 --- a/man/git-psykorebase.html +++ b/man/git-psykorebase.html @@ -65,7 +65,7 @@
    1. git-psykorebase(1)
    2. -
    3. +
    4. Git Extras
    5. git-psykorebase(1)
    @@ -128,7 +128,7 @@ Python.

    1. -
    2. December 2015
    3. +
    4. October 2017
    5. git-psykorebase(1)
    diff --git a/man/git-pull-request.1 b/man/git-pull-request.1 index 9524d33..2d8190e 100644 --- a/man/git-pull-request.1 +++ b/man/git-pull-request.1 @@ -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 diff --git a/man/git-pull-request.html b/man/git-pull-request.html index 6c20a25..0eba0c9 100644 --- a/man/git-pull-request.html +++ b/man/git-pull-request.html @@ -65,7 +65,7 @@
    1. git-pull-request(1)
    2. -
    3. +
    4. Git Extras
    5. git-pull-request(1)
    @@ -121,7 +121,7 @@ Enter host password for user 'spacewanderlzx@gmail.com':
    1. -
    2. October 2017
    3. +
    4. November 2017
    5. git-pull-request(1)
    diff --git a/man/git-reauthor.1 b/man/git-reauthor.1 index d62578f..099d727 100644 --- a/man/git-reauthor.1 +++ b/man/git-reauthor.1 @@ -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 diff --git a/man/git-reauthor.html b/man/git-reauthor.html index 0554e53..7f8b2bc 100644 --- a/man/git-reauthor.html +++ b/man/git-reauthor.html @@ -65,7 +65,7 @@
    1. git-reauthor(1)
    2. -
    3. +
    4. Git Extras
    5. git-reauthor(1)
    @@ -174,7 +174,7 @@ Possible type identifiers are: author, committer, both (default)
    1. -
    2. July 2016
    3. +
    4. October 2017
    5. git-reauthor(1)
    diff --git a/man/git-rebase-patch.1 b/man/git-rebase-patch.1 index 101b202..8e2500b 100644 --- a/man/git-rebase-patch.1 +++ b/man/git-rebase-patch.1 @@ -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 diff --git a/man/git-rebase-patch.html b/man/git-rebase-patch.html index daf99cd..6f9ad7d 100644 --- a/man/git-rebase-patch.html +++ b/man/git-rebase-patch.html @@ -65,7 +65,7 @@
    1. git-rebase-patch(1)
    2. -
    3. +
    4. Git Extras
    5. git-rebase-patch(1)
    @@ -126,7 +126,7 @@ Auto-merging README.txt
    1. -
    2. December 2015
    3. +
    4. October 2017
    5. git-rebase-patch(1)
    diff --git a/man/git-refactor.1 b/man/git-refactor.1 index cf0556d..3603488 100644 --- a/man/git-refactor.1 +++ b/man/git-refactor.1 @@ -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 diff --git a/man/git-refactor.html b/man/git-refactor.html index 3f2e333..a49ed01 100644 --- a/man/git-refactor.html +++ b/man/git-refactor.html @@ -65,7 +65,7 @@
    1. git-refactor(1)
    2. -
    3. +
    4. Git Extras
    5. git-refactor(1)
    @@ -124,7 +124,7 @@ Modified by Mark Pitman <
  • git-release(1)
  • -
  • +
  • Git Extras
  • git-release(1)
  • @@ -161,7 +161,7 @@ Extended by David Hartmann <
  • git-rename-branch(1)
  • -
  • +
  • Git Extras
  • git-rename-branch(1)
  • @@ -116,7 +116,7 @@ $ git rename-branch new-name
    1. -
    2. September 2016
    3. +
    4. October 2017
    5. git-rename-branch(1)
    diff --git a/man/git-rename-tag.1 b/man/git-rename-tag.1 index 2f39a12..cd914f1 100644 --- a/man/git-rename-tag.1 +++ b/man/git-rename-tag.1 @@ -1,7 +1,7 @@ .\" generated with Ronn/v0.7.3 .\" http://github.com/rtomayko/ronn/tree/0.7.3 . -.TH "GIT\-RENAME\-TAG" "1" "December 2015" "" "" +.TH "GIT\-RENAME\-TAG" "1" "October 2017" "" "Git Extras" . .SH "NAME" \fBgit\-rename\-tag\fR \- Rename a tag diff --git a/man/git-rename-tag.html b/man/git-rename-tag.html index 461d075..e9531da 100644 --- a/man/git-rename-tag.html +++ b/man/git-rename-tag.html @@ -65,7 +65,7 @@
    1. git-rename-tag(1)
    2. -
    3. +
    4. Git Extras
    5. git-rename-tag(1)
    @@ -128,7 +128,7 @@ test2
    1. -
    2. December 2015
    3. +
    4. October 2017
    5. git-rename-tag(1)
    diff --git a/man/git-repl.1 b/man/git-repl.1 index 497e698..c7ab7a8 100644 --- a/man/git-repl.1 +++ b/man/git-repl.1 @@ -1,7 +1,7 @@ .\" generated with Ronn/v0.7.3 .\" http://github.com/rtomayko/ronn/tree/0.7.3 . -.TH "GIT\-REPL" "1" "August 2016" "" "Git Extras" +.TH "GIT\-REPL" "1" "October 2017" "" "Git Extras" . .SH "NAME" \fBgit\-repl\fR \- git read\-eval\-print\-loop diff --git a/man/git-repl.html b/man/git-repl.html index c6e4de0..e669a1b 100644 --- a/man/git-repl.html +++ b/man/git-repl.html @@ -145,7 +145,7 @@ git (master)> quit
    1. -
    2. August 2016
    3. +
    4. October 2017
    5. git-repl(1)
    diff --git a/man/git-reset-file.1 b/man/git-reset-file.1 index 3bbe141..5d8bc2b 100644 --- a/man/git-reset-file.1 +++ b/man/git-reset-file.1 @@ -1,7 +1,7 @@ .\" generated with Ronn/v0.7.3 .\" http://github.com/rtomayko/ronn/tree/0.7.3 . -.TH "GIT\-RESET\-FILE" "1" "December 2015" "" "" +.TH "GIT\-RESET\-FILE" "1" "October 2017" "" "Git Extras" . .SH "NAME" \fBgit\-reset\-file\fR \- Reset one file diff --git a/man/git-reset-file.html b/man/git-reset-file.html index 3d57457..d4625e5 100644 --- a/man/git-reset-file.html +++ b/man/git-reset-file.html @@ -65,7 +65,7 @@
    1. git-reset-file(1)
    2. -
    3. +
    4. Git Extras
    5. git-reset-file(1)
    @@ -119,7 +119,7 @@
    1. -
    2. December 2015
    3. +
    4. October 2017
    5. git-reset-file(1)
    diff --git a/man/git-root.1 b/man/git-root.1 index 9a2eafb..49847ae 100644 --- a/man/git-root.1 +++ b/man/git-root.1 @@ -1,7 +1,7 @@ .\" generated with Ronn/v0.7.3 .\" http://github.com/rtomayko/ronn/tree/0.7.3 . -.TH "GIT\-ROOT" "1" "December 2015" "" "" +.TH "GIT\-ROOT" "1" "October 2017" "" "Git Extras" . .SH "NAME" \fBgit\-root\fR \- show path of root diff --git a/man/git-root.html b/man/git-root.html index d444beb..6e1f622 100644 --- a/man/git-root.html +++ b/man/git-root.html @@ -65,7 +65,7 @@
    1. git-root(1)
    2. -
    3. +
    4. Git Extras
    5. git-root(1)
    @@ -117,7 +117,7 @@ $ git add . && git commit
    1. -
    2. December 2015
    3. +
    4. October 2017
    5. git-root(1)
    diff --git a/man/git-scp.1 b/man/git-scp.1 index 636b1a5..74d87db 100644 --- a/man/git-scp.1 +++ b/man/git-scp.1 @@ -1,7 +1,7 @@ .\" generated with Ronn/v0.7.3 .\" http://github.com/rtomayko/ronn/tree/0.7.3 . -.TH "GIT\-SCP" "1" "December 2015" "" "" +.TH "GIT\-SCP" "1" "October 2017" "" "Git Extras" . .SH "NAME" \fBgit\-scp\fR \- Copy files to SSH compatible \fBgit\-remote\fR diff --git a/man/git-scp.html b/man/git-scp.html index ebfc2d9..84b8d0d 100644 --- a/man/git-scp.html +++ b/man/git-scp.html @@ -66,7 +66,7 @@
    1. git-scp(1)
    2. -
    3. +
    4. Git Extras
    5. git-scp(1)
    @@ -178,7 +178,7 @@ done;
    1. -
    2. December 2015
    3. +
    4. October 2017
    5. git-scp(1)
    diff --git a/man/git-sed.1 b/man/git-sed.1 index d0bf6da..da1dd33 100644 --- a/man/git-sed.1 +++ b/man/git-sed.1 @@ -1,7 +1,7 @@ .\" generated with Ronn/v0.7.3 .\" http://github.com/rtomayko/ronn/tree/0.7.3 . -.TH "GIT\-SED" "1" "December 2015" "" "" +.TH "GIT\-SED" "1" "May 2018" "" "Git Extras" . .SH "NAME" \fBgit\-sed\fR \- replace patterns in git\-controlled files diff --git a/man/git-sed.html b/man/git-sed.html index 15f1eb0..b5abfc4 100644 --- a/man/git-sed.html +++ b/man/git-sed.html @@ -65,7 +65,7 @@
    1. git-sed(1)
    2. -
    3. +
    4. Git Extras
    5. git-sed(1)
    @@ -135,7 +135,7 @@ http://stackoverflow.com/questions/9651898/is-there-a-git-sed-or-equivalent

    1. -
    2. December 2015
    3. +
    4. May 2018
    5. git-sed(1)
    diff --git a/man/git-setup.1 b/man/git-setup.1 index add1257..178acba 100644 --- a/man/git-setup.1 +++ b/man/git-setup.1 @@ -1,7 +1,7 @@ .\" generated with Ronn/v0.7.3 .\" http://github.com/rtomayko/ronn/tree/0.7.3 . -.TH "GIT\-SETUP" "1" "December 2015" "" "" +.TH "GIT\-SETUP" "1" "October 2017" "" "Git Extras" . .SH "NAME" \fBgit\-setup\fR \- Set up a git repository diff --git a/man/git-setup.html b/man/git-setup.html index 05f7321..d55349c 100644 --- a/man/git-setup.html +++ b/man/git-setup.html @@ -65,7 +65,7 @@
    1. git-setup(1)
    2. -
    3. +
    4. Git Extras
    5. git-setup(1)
    @@ -108,7 +108,7 @@
    1. -
    2. December 2015
    3. +
    4. October 2017
    5. git-setup(1)
    diff --git a/man/git-show-merged-branches.1 b/man/git-show-merged-branches.1 index b261ba6..301a3b0 100644 --- a/man/git-show-merged-branches.1 +++ b/man/git-show-merged-branches.1 @@ -1,7 +1,7 @@ .\" generated with Ronn/v0.7.3 .\" http://github.com/rtomayko/ronn/tree/0.7.3 . -.TH "GIT\-SHOW\-MERGED\-BRANCHES" "1" "December 2015" "" "" +.TH "GIT\-SHOW\-MERGED\-BRANCHES" "1" "October 2017" "" "Git Extras" . .SH "NAME" \fBgit\-show\-merged\-branches\fR \- Show merged branches diff --git a/man/git-show-merged-branches.html b/man/git-show-merged-branches.html index de854b8..7109ddc 100644 --- a/man/git-show-merged-branches.html +++ b/man/git-show-merged-branches.html @@ -64,7 +64,7 @@
    1. git-show-merged-branches(1)
    2. -
    3. +
    4. Git Extras
    5. git-show-merged-branches(1)
    @@ -101,7 +101,7 @@
    1. -
    2. December 2015
    3. +
    4. October 2017
    5. git-show-merged-branches(1)
    diff --git a/man/git-show-tree.1 b/man/git-show-tree.1 index 0d0e77e..90fe6bd 100644 --- a/man/git-show-tree.1 +++ b/man/git-show-tree.1 @@ -1,7 +1,7 @@ .\" generated with Ronn/v0.7.3 .\" http://github.com/rtomayko/ronn/tree/0.7.3 . -.TH "GIT\-SHOW\-TREE" "1" "December 2015" "" "" +.TH "GIT\-SHOW\-TREE" "1" "October 2017" "" "Git Extras" . .SH "NAME" \fBgit\-show\-tree\fR \- show branch tree of commit history diff --git a/man/git-show-tree.html b/man/git-show-tree.html index 4a8343b..1e2685b 100644 --- a/man/git-show-tree.html +++ b/man/git-show-tree.html @@ -64,7 +64,7 @@
    1. git-show-tree(1)
    2. -
    3. +
    4. Git Extras
    5. git-show-tree(1)
    @@ -131,7 +131,7 @@
    1. -
    2. December 2015
    3. +
    4. October 2017
    5. git-show-tree(1)
    diff --git a/man/git-show-unmerged-branches.1 b/man/git-show-unmerged-branches.1 index 4dc9182..eb8e77f 100644 --- a/man/git-show-unmerged-branches.1 +++ b/man/git-show-unmerged-branches.1 @@ -1,7 +1,7 @@ .\" generated with Ronn/v0.7.3 .\" http://github.com/rtomayko/ronn/tree/0.7.3 . -.TH "GIT\-SHOW\-UNMERGED\-BRANCHES" "1" "December 2015" "" "" +.TH "GIT\-SHOW\-UNMERGED\-BRANCHES" "1" "October 2017" "" "Git Extras" . .SH "NAME" \fBgit\-show\-unmerged\-branches\fR \- Show unmerged branches diff --git a/man/git-show-unmerged-branches.html b/man/git-show-unmerged-branches.html index f6eeab5..e538daa 100644 --- a/man/git-show-unmerged-branches.html +++ b/man/git-show-unmerged-branches.html @@ -64,7 +64,7 @@
    1. git-show-unmerged-branches(1)
    2. -
    3. +
    4. Git Extras
    5. git-show-unmerged-branches(1)
    @@ -101,7 +101,7 @@
    1. -
    2. December 2015
    3. +
    4. October 2017
    5. git-show-unmerged-branches(1)
    diff --git a/man/git-squash.1 b/man/git-squash.1 index 220bf33..ea7961f 100644 --- a/man/git-squash.1 +++ b/man/git-squash.1 @@ -1,7 +1,7 @@ .\" generated with Ronn/v0.7.3 .\" http://github.com/rtomayko/ronn/tree/0.7.3 . -.TH "GIT\-SQUASH" "1" "December 2015" "" "" +.TH "GIT\-SQUASH" "1" "October 2017" "" "Git Extras" . .SH "NAME" \fBgit\-squash\fR \- Import changes from a branch diff --git a/man/git-squash.html b/man/git-squash.html index a0d4e6d..890666e 100644 --- a/man/git-squash.html +++ b/man/git-squash.html @@ -65,7 +65,7 @@
    1. git-squash(1)
    2. -
    3. +
    4. Git Extras
    5. git-squash(1)
    @@ -125,7 +125,7 @@ $ git squash HEAD~3 "Commit message"
    1. -
    2. December 2015
    3. +
    4. October 2017
    5. git-squash(1)
    diff --git a/man/git-stamp.1 b/man/git-stamp.1 index 3c4d8b2..c0f2736 100644 --- a/man/git-stamp.1 +++ b/man/git-stamp.1 @@ -1,7 +1,7 @@ .\" generated with Ronn/v0.7.3 .\" http://github.com/rtomayko/ronn/tree/0.7.3 . -.TH "GIT\-STAMP" "1" "October 2016" "" "" +.TH "GIT\-STAMP" "1" "April 2018" "" "Git Extras" . .SH "NAME" \fBgit\-stamp\fR \- Stamp the last commit message diff --git a/man/git-stamp.html b/man/git-stamp.html index f443963..af1b09d 100644 --- a/man/git-stamp.html +++ b/man/git-stamp.html @@ -65,7 +65,7 @@
    1. git-stamp(1)
    2. -
    3. +
    4. Git Extras
    5. git-stamp(1)
    @@ -156,7 +156,7 @@ $ git stamp Issue FOO-456 \#close
    1. -
    2. October 2016
    3. +
    4. April 2018
    5. git-stamp(1)
    diff --git a/man/git-standup.1 b/man/git-standup.1 index 210d21f..8fa4b01 100644 --- a/man/git-standup.1 +++ b/man/git-standup.1 @@ -1,7 +1,7 @@ .\" generated with Ronn/v0.7.3 .\" http://github.com/rtomayko/ronn/tree/0.7.3 . -.TH "GIT\-STANDUP" "1" "April 2017" "" "" +.TH "GIT\-STANDUP" "1" "October 2017" "" "Git Extras" . .SH "NAME" \fBgit\-standup\fR \- Recall the commit history diff --git a/man/git-standup.html b/man/git-standup.html index fb20191..88651f5 100644 --- a/man/git-standup.html +++ b/man/git-standup.html @@ -65,7 +65,7 @@
    1. git-standup(1)
    2. -
    3. +
    4. Git Extras
    5. git-standup(1)
    @@ -169,7 +169,7 @@ someProject/
    1. -
    2. April 2017
    3. +
    4. October 2017
    5. git-standup(1)
    diff --git a/man/git-summary.1 b/man/git-summary.1 index 463399c..be96f16 100644 --- a/man/git-summary.1 +++ b/man/git-summary.1 @@ -1,7 +1,7 @@ .\" generated with Ronn/v0.7.3 .\" http://github.com/rtomayko/ronn/tree/0.7.3 . -.TH "GIT\-SUMMARY" "1" "December 2015" "" "" +.TH "GIT\-SUMMARY" "1" "October 2017" "" "Git Extras" . .SH "NAME" \fBgit\-summary\fR \- Show repository summary diff --git a/man/git-summary.html b/man/git-summary.html index 5b937a3..e9f31a6 100644 --- a/man/git-summary.html +++ b/man/git-summary.html @@ -65,7 +65,7 @@
    1. git-summary(1)
    2. -
    3. +
    4. Git Extras
    5. git-summary(1)
    @@ -147,7 +147,7 @@ authors :
    1. -
    2. December 2015
    3. +
    4. October 2017
    5. git-summary(1)
    diff --git a/man/git-sync.1 b/man/git-sync.1 index 498b2f2..30ec48e 100644 --- a/man/git-sync.1 +++ b/man/git-sync.1 @@ -1,7 +1,7 @@ .\" generated with Ronn/v0.7.3 .\" http://github.com/rtomayko/ronn/tree/0.7.3 . -.TH "GIT\-SYNC" "1" "January 2016" "" "" +.TH "GIT\-SYNC" "1" "October 2017" "" "Git Extras" . .SH "NAME" \fBgit\-sync\fR \- Sync local branch with remote branch diff --git a/man/git-sync.html b/man/git-sync.html index 234cdb0..ab00335 100644 --- a/man/git-sync.html +++ b/man/git-sync.html @@ -64,7 +64,7 @@
    1. git-sync(1)
    2. -
    3. +
    4. Git Extras
    5. git-sync(1)
    @@ -112,7 +112,7 @@
    1. -
    2. January 2016
    3. +
    4. October 2017
    5. git-sync(1)
    diff --git a/man/git-touch.1 b/man/git-touch.1 index 708dc19..214aa37 100644 --- a/man/git-touch.1 +++ b/man/git-touch.1 @@ -1,7 +1,7 @@ .\" generated with Ronn/v0.7.3 .\" http://github.com/rtomayko/ronn/tree/0.7.3 . -.TH "GIT\-TOUCH" "1" "December 2015" "" "" +.TH "GIT\-TOUCH" "1" "October 2017" "" "Git Extras" . .SH "NAME" \fBgit\-touch\fR \- Touch and add file to the index diff --git a/man/git-touch.html b/man/git-touch.html index 718da49..42991fb 100644 --- a/man/git-touch.html +++ b/man/git-touch.html @@ -65,7 +65,7 @@
    1. git-touch(1)
    2. -
    3. +
    4. Git Extras
    5. git-touch(1)
    @@ -107,7 +107,7 @@
    1. -
    2. December 2015
    3. +
    4. October 2017
    5. git-touch(1)
    diff --git a/man/git-undo.1 b/man/git-undo.1 index d38d9a7..ee2325b 100644 --- a/man/git-undo.1 +++ b/man/git-undo.1 @@ -1,7 +1,7 @@ .\" generated with Ronn/v0.7.3 .\" http://github.com/rtomayko/ronn/tree/0.7.3 . -.TH "GIT\-UNDO" "1" "February 2018" "" "" +.TH "GIT\-UNDO" "1" "April 2018" "" "Git Extras" . .SH "NAME" \fBgit\-undo\fR \- Remove latest commits diff --git a/man/git-undo.html b/man/git-undo.html index 887be11..80bc261 100644 --- a/man/git-undo.html +++ b/man/git-undo.html @@ -65,7 +65,7 @@
    1. git-undo(1)
    2. -
    3. +
    4. Git Extras
    5. git-undo(1)
    @@ -124,7 +124,7 @@
    1. -
    2. February 2018
    3. +
    4. April 2018
    5. git-undo(1)
    diff --git a/man/git-unlock.1 b/man/git-unlock.1 index 827e121..759a79c 100644 --- a/man/git-unlock.1 +++ b/man/git-unlock.1 @@ -1,7 +1,7 @@ .\" generated with Ronn/v0.7.3 .\" http://github.com/rtomayko/ronn/tree/0.7.3 . -.TH "GIT\-UNLOCK" "1" "December 2015" "" "" +.TH "GIT\-UNLOCK" "1" "October 2017" "" "Git Extras" . .SH "NAME" \fBgit\-unlock\fR \- Unlock a file excluded from version control diff --git a/man/git-unlock.html b/man/git-unlock.html index 8326a86..a21dd47 100644 --- a/man/git-unlock.html +++ b/man/git-unlock.html @@ -65,7 +65,7 @@
    1. git-unlock(1)
    2. -
    3. +
    4. Git Extras
    5. git-unlock(1)
    @@ -108,7 +108,7 @@
    1. -
    2. December 2015
    3. +
    4. October 2017
    5. git-unlock(1)
    From ba6d9918519fbf4ba23d91ded7824ecb92e27fd7 Mon Sep 17 00:00:00 2001 From: Paul Wise Date: Wed, 9 May 2018 11:04:34 +0800 Subject: [PATCH 4/7] Documentation rebuild: index.txt updates Removes most index.txt whitespace because whitespace is insignificant in ronn index.txt files and POSIX shell makes it hard to use the right amount. Re-orders git-clear/git-clear-soft and git-lock/git-locked due to differences between the sorting by make and shell. --- man/index.txt | 128 +++++++++++++++++++++++++------------------------- 1 file changed, 64 insertions(+), 64 deletions(-) diff --git a/man/index.txt b/man/index.txt index de813f5..91ec69c 100644 --- a/man/index.txt +++ b/man/index.txt @@ -1,67 +1,67 @@ # manuals -git-alias(1) git-alias -git-archive-file(1) git-archive-file -git-authors(1) git-authors -git-back(1) git-back -git-bug(1) git-bug -git-bulk(1) git-bulk -git-changelog(1) git-changelog -git-chore(1) git-chore -git-clear(1) git-clear -git-clear-soft(1) git-clear-soft -git-commits-since(1) git-commits-since -git-contrib(1) git-contrib -git-count(1) git-count -git-create-branch(1) git-create-branch -git-delete-branch(1) git-delete-branch +git-alias(1) git-alias +git-archive-file(1) git-archive-file +git-authors(1) git-authors +git-back(1) git-back +git-bug(1) git-bug +git-bulk(1) git-bulk +git-changelog(1) git-changelog +git-chore(1) git-chore +git-clear-soft(1) git-clear-soft +git-clear(1) git-clear +git-commits-since(1) git-commits-since +git-contrib(1) git-contrib +git-count(1) git-count +git-create-branch(1) git-create-branch +git-delete-branch(1) git-delete-branch git-delete-merged-branches(1) git-delete-merged-branches -git-delete-submodule(1) git-delete-submodule -git-delete-tag(1) git-delete-tag -git-delta(1) git-delta -git-effort(1) git-effort -git-extras(1) git-extras -git-feature(1) git-feature -git-force-clone(1) git-force-clone -git-fork(1) git-fork -git-fresh-branch(1) git-fresh-branch -git-gh-pages(1) git-gh-pages -git-graft(1) git-graft -git-guilt(1) git-guilt -git-ignore-io(1) git-ignore-io -git-ignore(1) git-ignore -git-info(1) git-info -git-line-summary(1) git-line-summary -git-local-commits(1) git-local-commits -git-locked(1) git-locked -git-lock(1) git-lock -git-merge-into(1) git-merge-into -git-merge-repo(1) git-merge-repo -git-missing(1) git-missing -git-mr(1) git-mr -git-obliterate(1) git-obliterate -git-pr(1) git-pr -git-psykorebase(1) git-psykorebase -git-pull-request(1) git-pull-request -git-reauthor(1) git-reauthor -git-rebase-patch(1) git-rebase-patch -git-refactor(1) git-refactor -git-release(1) git-release -git-rename-branch(1) git-rename-branch -git-rename-tag(1) git-rename-tag -git-repl(1) git-repl -git-reset-file(1) git-reset-file -git-root(1) git-root -git-scp(1) git-scp -git-sed(1) git-sed -git-setup(1) git-setup -git-show-merged-branches(1) git-show-merged-branches -git-show-tree(1) git-show-tree +git-delete-submodule(1) git-delete-submodule +git-delete-tag(1) git-delete-tag +git-delta(1) git-delta +git-effort(1) git-effort +git-extras(1) git-extras +git-feature(1) git-feature +git-force-clone(1) git-force-clone +git-fork(1) git-fork +git-fresh-branch(1) git-fresh-branch +git-gh-pages(1) git-gh-pages +git-graft(1) git-graft +git-guilt(1) git-guilt +git-ignore-io(1) git-ignore-io +git-ignore(1) git-ignore +git-info(1) git-info +git-line-summary(1) git-line-summary +git-local-commits(1) git-local-commits +git-lock(1) git-lock +git-locked(1) git-locked +git-merge-into(1) git-merge-into +git-merge-repo(1) git-merge-repo +git-missing(1) git-missing +git-mr(1) git-mr +git-obliterate(1) git-obliterate +git-pr(1) git-pr +git-psykorebase(1) git-psykorebase +git-pull-request(1) git-pull-request +git-reauthor(1) git-reauthor +git-rebase-patch(1) git-rebase-patch +git-refactor(1) git-refactor +git-release(1) git-release +git-rename-branch(1) git-rename-branch +git-rename-tag(1) git-rename-tag +git-repl(1) git-repl +git-reset-file(1) git-reset-file +git-root(1) git-root +git-scp(1) git-scp +git-sed(1) git-sed +git-setup(1) git-setup +git-show-merged-branches(1) git-show-merged-branches +git-show-tree(1) git-show-tree git-show-unmerged-branches(1) git-show-unmerged-branches -git-squash(1) git-squash -git-stamp(1) git-stamp -git-standup(1) git-standup -git-summary(1) git-summary -git-sync(1) git-sync -git-touch(1) git-touch -git-undo(1) git-undo -git-unlock(1) git-unlock +git-squash(1) git-squash +git-stamp(1) git-stamp +git-standup(1) git-standup +git-summary(1) git-summary +git-sync(1) git-sync +git-touch(1) git-touch +git-undo(1) git-undo +git-unlock(1) git-unlock From 8b58e570cba51cebff0f246e2bdbfacec1e2fdec Mon Sep 17 00:00:00 2001 From: Paul Wise Date: Wed, 9 May 2018 11:05:39 +0800 Subject: [PATCH 5/7] Documentation rebuild: git-extras.* updates Re-orders git-clear/git-clear-soft and git-lock/git-locked due to differences between the sorting by make and shell. --- man/git-extras.1 | 8 ++++---- man/git-extras.html | 4 ++-- man/git-extras.md | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/man/git-extras.1 b/man/git-extras.1 index b7d145a..0aa2426 100644 --- a/man/git-extras.1 +++ b/man/git-extras.1 @@ -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 diff --git a/man/git-extras.html b/man/git-extras.html index 9d1b4c3..8be89cf 100644 --- a/man/git-extras.html +++ b/man/git-extras.html @@ -102,8 +102,8 @@
  • 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
  • @@ -126,8 +126,8 @@
  • 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
  • diff --git a/man/git-extras.md b/man/git-extras.md index 42818b6..3698039 100644 --- a/man/git-extras.md +++ b/man/git-extras.md @@ -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 From 731e9d8db9e64e8f5ad4cd565eeb9e583add9ea9 Mon Sep 17 00:00:00 2001 From: Paul Wise Date: Wed, 9 May 2018 11:07:03 +0800 Subject: [PATCH 6/7] Documentation rebuild: git-clear.html whitespace removal Reflects changes in commit a6732ef6db4c2a2624eb683e29d88db7a3f132cb --- man/git-clear.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/man/git-clear.html b/man/git-clear.html index cbde5ba..4d4c9a4 100644 --- a/man/git-clear.html +++ b/man/git-clear.html @@ -3,7 +3,7 @@ - git-clear(1) - Rigorously clean up a repository + git-clear(1) - Rigorously clean up a repository