diff --git a/Commands.md b/Commands.md index 3361295..2ae3e37 100644 --- a/Commands.md +++ b/Commands.md @@ -4,11 +4,9 @@ - [`git authors`](#git-authors) - [`git back`](#git-back) - [`git browse`](#git-browse) - - [`git bug`](#git-featurerefactorbugchore) - [`git bulk`](#git-bulk) - [`git brv`](#git-brv) - [`git changelog`](#git-changelog) - - [`git chore`](#git-featurerefactorbugchore) - [`git clear`](#git-clear) - [`git clear-soft`](#git-clear-soft) - [`git coauthor`](#git-coauthor) @@ -48,7 +46,6 @@ - [`git pull-request`](#git-pull-request) - [`git reauthor`](#git-reauthor) - [`git rebase-patch`](#git-rebase-patch) - - [`git refactor`](#git-featurerefactorbugchore) - [`git release`](#git-release) - [`git rename-branch`](#git-rename-branch) - [`git rename-tag`](#git-rename-tag) diff --git a/etc/bash_completion.sh b/etc/bash_completion.sh index 0bf2975..18daeb2 100644 --- a/etc/bash_completion.sh +++ b/etc/bash_completion.sh @@ -1,9 +1,5 @@ # bash completion support for git-extras. -_git_bug(){ - __git_extras_workflow "bug" -} - _git_changelog(){ local s_opts=( '-a' '-l' '-t' '-f' '-s' '-n' '-p' '-x' '-h' '?' ) local l_opts=( @@ -25,10 +21,6 @@ _git_changelog(){ __gitcomp "$merged_opts_str" } -_git_chore(){ - __git_extras_workflow "chore" -} - _git_authors(){ __gitcomp "-l --list --no-email" } @@ -131,10 +123,6 @@ _git_reauthor(){ __gitcomp "${comp}" } -_git_refactor(){ - __git_extras_workflow "refactor" -} - _git_scp(){ __git_complete_remote_or_refspec } diff --git a/etc/git-extras-completion.zsh b/etc/git-extras-completion.zsh index 6f4a18d..702cc39 100644 --- a/etc/git-extras-completion.zsh +++ b/etc/git-extras-completion.zsh @@ -80,22 +80,10 @@ __gitex_specific_branch_names() { _wanted branch-names expl branch-name compadd - $branch_names } -__gitex_chore_branch_names() { - __gitex_specific_branch_names 'chore' -} - __gitex_feature_branch_names() { __gitex_specific_branch_names 'feature' } -__gitex_refactor_branch_names() { - __gitex_specific_branch_names 'refactor' -} - -__gitex_bug_branch_names() { - __gitex_specific_branch_names 'bug' -} - __gitex_submodule_names() { local expl declare -a submodule_names @@ -120,84 +108,11 @@ _git-authors() { '--no-email[without email]' \ } -_git-bug() { - local curcontext=$curcontext state line ret=1 - declare -A opt_args - - _arguments -C \ - ': :->command' \ - '*:: :->option-or-argument' && ret=0 - - case $state in - (command) - declare -a commands - commands=( - 'finish:merge bug into the current branch' - ) - _describe -t commands command commands && ret=0 - ;; - (option-or-argument) - curcontext=${curcontext%:*}-$line[1]: - case $line[1] in - (finish) - _arguments -C \ - '--squash[Use squash merge]' \ - ':branch-name:__gitex_bug_branch_names' - ;; - -r|--remote ) - _arguments -C \ - ':remote-name:__gitex_remote_names' - ;; - esac - return 0 - esac - - _arguments \ - '(--remote -r)'{--remote,-r}'[setup remote tracking branch]' -} - - _git-changelog() { _arguments \ '(-l --list)'{-l,--list}'[list commits]' \ } -_git-chore() { - local curcontext=$curcontext state line ret=1 - declare -A opt_args - - _arguments -C \ - ': :->command' \ - '*:: :->option-or-argument' && ret=0 - - case $state in - (command) - declare -a commands - commands=( - 'finish:merge and delete the chore branch' - ) - _describe -t commands command commands && ret=0 - ;; - (option-or-argument) - curcontext=${curcontext%:*}-$line[1]: - case $line[1] in - (finish) - _arguments -C \ - '--squash[Use squash merge]' \ - ':branch-name:__gitex_chore_branch_names' - ;; - -r|--remote ) - _arguments -C \ - ':remote-name:__gitex_remote_names' - ;; - esac - return 0 - esac - - _arguments \ - '(--remote -r)'{--remote,-r}'[setup remote tracking branch]' -} - _git-coauthor() { _arguments \ ':co-author[co-author to add]' \ @@ -365,44 +280,6 @@ _git-missing() { ':second-branch-name:__gitex_branch_names' } - -_git-refactor() { - local curcontext=$curcontext state line ret=1 - declare -A opt_args - - _arguments -C \ - ': :->command' \ - '*:: :->option-or-argument' && ret=0 - - case $state in - (command) - declare -a commands - commands=( - 'finish:merge refactor into the current branch' - ) - _describe -t commands command commands && ret=0 - ;; - (option-or-argument) - curcontext=${curcontext%:*}-$line[1]: - case $line[1] in - (finish) - _arguments -C \ - '--squash[Use squash merge]' \ - ':branch-name:__gitex_refactor_branch_names' - ;; - -r|--remote ) - _arguments -C \ - ':remote-name:__gitex_remote_names' - ;; - esac - return 0 - esac - - _arguments \ - '(--remote -r)'{--remote,-r}'[setup remote tracking branch]' -} - - _git-squash() { _arguments '--squash-msg[commit with the squashed commit messages]' _arguments \ diff --git a/man/git-bug.1 b/man/git-bug.1 deleted file mode 100644 index ee581e1..0000000 --- a/man/git-bug.1 +++ /dev/null @@ -1,61 +0,0 @@ -.\" generated with Ronn/v0.7.3 -.\" http://github.com/rtomayko/ronn/tree/0.7.3 -. -.TH "GIT\-BUG" "1" "October 2017" "" "Git Extras" -. -.SH "NAME" -\fBgit\-bug\fR \- Create bug branch -. -.SH "SYNOPSIS" -\fBgit\-bug\fR [\-r|\-\-remote [remote_name]] [finish] -. -.SH "DESCRIPTION" -Create the given bug branch -. -.SH "OPTIONS" -<\-r|\-\-remote [remote_name]> -. -.P -Setup a remote tracking branch using \fBremote_name\fR\. If \fBremote_name\fR is not supplied, use \fBorigin\fR by default\. -. -.P - -. -.P -Merge and delete the bug branch\. -. -.P -<\-r -. -.P - -. -.P -The name of the bug branch\. -. -.SH "EXAMPLES" -. -.nf - -$ git bug bug\-123456 -\.\.\. -$ git commit \-m "Some changes" -\.\.\. -$ git checkout master -$ git bug finish bug\-123456 - -$ git bug \-r 12345 -. -.fi -. -.SH "AUTHOR" -Written by Jesús Espino <\fIjespinog@gmail\.com\fR> -. -.br -Modified by Mark Pitman <\fImark\.pitman@gmail\.com\fR> -. -.SH "REPORTING BUGS" -<\fIhttps://github\.com/tj/git\-extras/issues\fR> -. -.SH "SEE ALSO" -<\fIhttps://github\.com/tj/git\-extras\fR> diff --git a/man/git-bug.html b/man/git-bug.html deleted file mode 100644 index f4df38c..0000000 --- a/man/git-bug.html +++ /dev/null @@ -1,135 +0,0 @@ - - - - - - git-bug(1) - Create bug branch - - - - -
- - - -
    -
  1. git-bug(1)
  2. -
  3. Git Extras
  4. -
  5. git-bug(1)
  6. -
- -

NAME

-

- git-bug - Create bug branch -

- -

SYNOPSIS

- -

git-bug [-r|--remote [remote_name]] [finish] <name>

- -

DESCRIPTION

- -

Create the given bug branch

- -

OPTIONS

- -

<-r|--remote [remote_name]>

- -

Setup a remote tracking branch using remote_name. If remote_name is not supplied, use origin by default.

- -

<finish>

- -

Merge and delete the bug branch.

- -

<-r

- -

<name>

- -

The name of the bug branch.

- -

EXAMPLES

- -
$ git bug bug-123456
-...
-$ git commit -m "Some changes"
-...
-$ git checkout master
-$ git bug finish bug-123456
-
-$ git bug -r 12345
-
- -

AUTHOR

- -

Written by Jesús Espino <jespinog@gmail.com>
-Modified by Mark Pitman <mark.pitman@gmail.com>

- -

REPORTING BUGS

- -

<https://github.com/tj/git-extras/issues>

- -

SEE ALSO

- -

<https://github.com/tj/git-extras>

- - -
    -
  1. -
  2. October 2017
  3. -
  4. git-bug(1)
  5. -
- -
- - diff --git a/man/git-bug.md b/man/git-bug.md deleted file mode 100644 index d6482e4..0000000 --- a/man/git-bug.md +++ /dev/null @@ -1,50 +0,0 @@ -git-bug(1) -- Create bug branch -=============================== - -## SYNOPSIS - -`git-bug` [-r|--remote [remote_name]] [finish] <name> - -## DESCRIPTION - - Create the given bug branch - -## OPTIONS - - <-r|--remote [remote_name]> - - Setup a remote tracking branch using `remote_name`. If `remote_name` is not supplied, use `origin` by default. - - <finish> - - Merge and delete the bug branch. - - <-r - - <name> - - The name of the bug branch. - -## EXAMPLES - - $ git bug bug-123456 - ... - $ git commit -m "Some changes" - ... - $ git checkout master - $ git bug finish bug-123456 - - $ git bug -r 12345 - -## AUTHOR - -Written by Jesús Espino <> -Modified by Mark Pitman <> - -## REPORTING BUGS - -<> - -## SEE ALSO - -<> diff --git a/man/git-chore.1 b/man/git-chore.1 deleted file mode 100644 index bc45893..0000000 --- a/man/git-chore.1 +++ /dev/null @@ -1,58 +0,0 @@ -.\" generated with Ronn/v0.7.3 -.\" http://github.com/rtomayko/ronn/tree/0.7.3 -. -.TH "GIT\-CHORE" "1" "October 2017" "" "Git Extras" -. -.SH "NAME" -\fBgit\-chore\fR \- Create chore branch -. -.SH "SYNOPSIS" -\fBgit\-chore\fR [\-r|\-\-remote [remote_name]] [finish] -. -.SH "DESCRIPTION" -Create the given chore branch -. -.SH "OPTIONS" -<\-r|\-\-remote [remote_name]> -. -.P -Setup a remote tracking branch using \fBremote_name\fR\. If \fBremote_name\fR is not supplied, use \fBorigin\fR by default\. -. -.P - -. -.P -Merge and delete the chore branch\. -. -.P - -. -.P -The name of the chore branch\. -. -.SH "EXAMPLES" -. -.nf - -$ git chore chore\-123456 -\.\.\. -$ git commit \-m "Some changes" -\.\.\. -$ git checkout master -$ git chore finish chore\-123456 - -$ git chore \-r upstream 123456 -. -.fi -. -.SH "AUTHOR" -Written by Chris Hall <\fIchristopher\.k\.hall@gmail\.com\fR> from bug/feature/refactor commands originally written by Jesús Espino <\fIjespinog@gmail\.com\fR> -. -.br -Modified by Mark Pitman <\fImark\.pitman@gmail\.com\fR> -. -.SH "REPORTING BUGS" -<\fIhttps://github\.com/tj/git\-extras/issues\fR> -. -.SH "SEE ALSO" -<\fIhttps://github\.com/tj/git\-extras\fR> diff --git a/man/git-chore.html b/man/git-chore.html deleted file mode 100644 index 7cbe08b..0000000 --- a/man/git-chore.html +++ /dev/null @@ -1,133 +0,0 @@ - - - - - - git-chore(1) - Create chore branch - - - - -
- - - -
    -
  1. git-chore(1)
  2. -
  3. Git Extras
  4. -
  5. git-chore(1)
  6. -
- -

NAME

-

- git-chore - Create chore branch -

- -

SYNOPSIS

- -

git-chore [-r|--remote [remote_name]] [finish] <name>

- -

DESCRIPTION

- -

Create the given chore branch

- -

OPTIONS

- -

<-r|--remote [remote_name]>

- -

Setup a remote tracking branch using remote_name. If remote_name is not supplied, use origin by default.

- -

<finish>

- -

Merge and delete the chore branch.

- -

<name>

- -

The name of the chore branch.

- -

EXAMPLES

- -
$ git chore chore-123456
-...
-$ git commit -m "Some changes"
-...
-$ git checkout master
-$ git chore finish chore-123456
-
-$ git chore -r upstream 123456
-
- -

AUTHOR

- -

Written by Chris Hall <christopher.k.hall@gmail.com> from bug/feature/refactor commands originally written by Jesús Espino <jespinog@gmail.com>
-Modified by Mark Pitman <mark.pitman@gmail.com>

- -

REPORTING BUGS

- -

<https://github.com/tj/git-extras/issues>

- -

SEE ALSO

- -

<https://github.com/tj/git-extras>

- - -
    -
  1. -
  2. October 2017
  3. -
  4. git-chore(1)
  5. -
- -
- - diff --git a/man/git-chore.md b/man/git-chore.md deleted file mode 100644 index 4202d49..0000000 --- a/man/git-chore.md +++ /dev/null @@ -1,48 +0,0 @@ -git-chore(1) -- Create chore branch -=============================== - -## SYNOPSIS - -`git-chore` [-r|--remote [remote_name]] [finish] <name> - -## DESCRIPTION - - Create the given chore branch - -## OPTIONS - - <-r|--remote [remote_name]> - - Setup a remote tracking branch using `remote_name`. If `remote_name` is not supplied, use `origin` by default. - - <finish> - - Merge and delete the chore branch. - - <name> - - The name of the chore branch. - -## EXAMPLES - - $ git chore chore-123456 - ... - $ git commit -m "Some changes" - ... - $ git checkout master - $ git chore finish chore-123456 - - $ git chore -r upstream 123456 - -## AUTHOR - -Written by Chris Hall <> from bug/feature/refactor commands originally written by Jesús Espino <> -Modified by Mark Pitman <> - -## REPORTING BUGS - -<> - -## SEE ALSO - -<> diff --git a/man/git-extras.1 b/man/git-extras.1 index 76fd6d9..d254789 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" "July 2019" "" "Git Extras" +.TH "GIT\-EXTRAS" "1" "May 2020" "" "Git Extras" . .SH "NAME" \fBgit\-extras\fR \- Awesome GIT utilities @@ -42,7 +42,10 @@ Self update\. \fBgit\-back(1)\fR Undo and Stage latest commits . .IP "\(bu" 4 -\fBgit\-bug(1)\fR Create bug branch +\fBgit\-browse(1)\fR \fIView the web page for the current repository\fR +. +.IP "\(bu" 4 +\fBgit\-brv(1)\fR List branches sorted by their last commit date . .IP "\(bu" 4 \fBgit\-bulk(1)\fR Run git commands on multiple repositories @@ -51,15 +54,15 @@ Self update\. \fBgit\-changelog(1)\fR Generate a changelog report . .IP "\(bu" 4 -\fBgit\-chore(1)\fR Create chore branch -. -.IP "\(bu" 4 \fBgit\-clear\-soft(1)\fR Soft clean up a repository . .IP "\(bu" 4 \fBgit\-clear(1)\fR Rigorously clean up a repository . .IP "\(bu" 4 +\fBgit\-coauthor(1)\fR Add a co\-author to the last commit +. +.IP "\(bu" 4 \fBgit\-commits\-since(1)\fR Show commit logs since some date . .IP "\(bu" 4 @@ -69,6 +72,9 @@ Self update\. \fBgit\-count(1)\fR Show commit count . .IP "\(bu" 4 +\fBgit\-cp(1)\fR Copy a file keeping its history +. +.IP "\(bu" 4 \fBgit\-create\-branch(1)\fR Create branches . .IP "\(bu" 4 @@ -144,6 +150,9 @@ Self update\. \fBgit\-obliterate(1)\fR rewrite past commits to remove some files . .IP "\(bu" 4 +\fBgit\-paste(1)\fR Send patches to pastebin for chat conversations +. +.IP "\(bu" 4 \fBgit\-pr(1)\fR Checks out a pull request locally . .IP "\(bu" 4 @@ -159,9 +168,6 @@ Self update\. \fBgit\-rebase\-patch(1)\fR Rebases a patch . .IP "\(bu" 4 -\fBgit\-refactor(1)\fR Create refactor branch -. -.IP "\(bu" 4 \fBgit\-release(1)\fR Commit, tag and push changes to the repository . .IP "\(bu" 4 diff --git a/man/git-extras.html b/man/git-extras.html index bfeddf2..21a5252 100644 --- a/man/git-extras.html +++ b/man/git-extras.html @@ -98,15 +98,17 @@
  • git-archive-file(1) Export the current HEAD of the git repository to an archive
  • git-authors(1) Generate authors report
  • git-back(1) Undo and Stage latest commits
  • -
  • git-bug(1) Create bug branch
  • +
  • git-browse(1) View the web page for the current repository
  • +
  • git-brv(1) List branches sorted by their last commit date
  • git-bulk(1) Run git commands on multiple repositories
  • git-changelog(1) Generate a changelog report
  • -
  • git-chore(1) Create chore branch
  • git-clear-soft(1) Soft clean up a repository
  • git-clear(1) Rigorously clean up a repository
  • +
  • git-coauthor(1) Add a co-author to the last commit
  • git-commits-since(1) Show commit logs since some date
  • git-contrib(1) Show user's contributions
  • git-count(1) Show commit count
  • +
  • git-cp(1) Copy a file keeping its history
  • git-create-branch(1) Create branches
  • git-delete-branch(1) Delete branches
  • git-delete-merged-branches(1) Delete merged branches
  • @@ -132,12 +134,12 @@
  • git-missing(1) Show commits missing from another branch
  • git-mr(1) Checks out a merge request locally
  • git-obliterate(1) rewrite past commits to remove some files
  • +
  • git-paste(1) Send patches to pastebin for chat conversations
  • git-pr(1) Checks out a pull request locally
  • git-psykorebase(1) Rebase a branch with a merge commit
  • git-pull-request(1) Create pull request for GitHub project
  • git-reauthor(1) Rewrite history to change author's identity
  • git-rebase-patch(1) Rebases a patch
  • -
  • git-refactor(1) Create refactor branch
  • git-release(1) Commit, tag and push changes to the repository
  • git-rename-branch(1) rename local branch and push to remote
  • git-rename-remote(1) Rename a remote
  • @@ -164,7 +166,7 @@

    AUTHOR

    -

    Written by Tj Holowaychuk <tj@vision-media.ca>

    +

    Written by Tj Holowaychuk <tj@vision-media.ca>

    REPORTING BUGS

    @@ -177,7 +179,7 @@
    1. -
    2. July 2019
    3. +
    4. May 2020
    5. git-extras(1)
    diff --git a/man/git-extras.md b/man/git-extras.md index 82f9ce7..8fa0424 100644 --- a/man/git-extras.md +++ b/man/git-extras.md @@ -27,10 +27,8 @@ git-extras(1) -- Awesome GIT utilities - **git-back(1)** Undo and Stage latest commits - **git-browse(1)** - **git-brv(1)** List branches sorted by their last commit date - - **git-bug(1)** Create bug branch - **git-bulk(1)** Run git commands on multiple repositories - **git-changelog(1)** Generate a changelog report - - **git-chore(1)** Create chore branch - **git-clear-soft(1)** Soft clean up a repository - **git-clear(1)** Rigorously clean up a repository - **git-coauthor(1)** Add a co-author to the last commit @@ -69,7 +67,6 @@ git-extras(1) -- Awesome GIT utilities - **git-pull-request(1)** Create pull request for GitHub project - **git-reauthor(1)** Rewrite history to change author's identity - **git-rebase-patch(1)** Rebases a patch - - **git-refactor(1)** Create refactor branch - **git-release(1)** Commit, tag and push changes to the repository - **git-rename-branch(1)** rename local branch and push to remote - **git-rename-remote(1)** Rename a remote diff --git a/man/git-refactor.1 b/man/git-refactor.1 deleted file mode 100644 index 3603488..0000000 --- a/man/git-refactor.1 +++ /dev/null @@ -1,58 +0,0 @@ -.\" generated with Ronn/v0.7.3 -.\" http://github.com/rtomayko/ronn/tree/0.7.3 -. -.TH "GIT\-REFACTOR" "1" "May 2018" "" "Git Extras" -. -.SH "NAME" -\fBgit\-refactor\fR \- Create refactor branch -. -.SH "SYNOPSIS" -\fBgit\-refactor\fR [\-r|\-\-remote [remote_name]] [finish] -. -.SH "DESCRIPTION" -Create the given refactor branch -. -.SH "OPTIONS" -<\-r|\-\-remote [remote_name]> -. -.P -Setup a remote tracking branch using \fBremote_name\fR\. If \fBremote_name\fR is not supplied, use \fBorigin\fR by default\. -. -.P - -. -.P -Merge and delete the refactor branch\. -. -.P - -. -.P -The name of the refactor branch\. -. -.SH "EXAMPLES" -. -.nf - -$ git refactor mainlib_refactor -\.\.\. -$ git commit \-m "Some changes" -\.\.\. -$ git checkout master -$ git refactor finish mainlib_refactor - -$ $ git refactor \-r upstream mainlib_refactor -. -.fi -. -.SH "AUTHOR" -Written by Jesús Espino <\fIjespinog@gmail\.com\fR> -. -.br -Modified by Mark Pitman <\fImark\.pitman@gmail\.com\fR> -. -.SH "REPORTING BUGS" -<\fIhttps://github\.com/tj/git\-extras/issues\fR> -. -.SH "SEE ALSO" -<\fIhttps://github\.com/tj/git\-extras\fR> diff --git a/man/git-refactor.html b/man/git-refactor.html deleted file mode 100644 index a49ed01..0000000 --- a/man/git-refactor.html +++ /dev/null @@ -1,133 +0,0 @@ - - - - - - git-refactor(1) - Create refactor branch - - - - -
    - - - -
      -
    1. git-refactor(1)
    2. -
    3. Git Extras
    4. -
    5. git-refactor(1)
    6. -
    - -

    NAME

    -

    - git-refactor - Create refactor branch -

    - -

    SYNOPSIS

    - -

    git-refactor [-r|--remote [remote_name]] [finish] <name>

    - -

    DESCRIPTION

    - -

    Create the given refactor branch

    - -

    OPTIONS

    - -

    <-r|--remote [remote_name]>

    - -

    Setup a remote tracking branch using remote_name. If remote_name is not supplied, use origin by default.

    - -

    <finish>

    - -

    Merge and delete the refactor branch.

    - -

    <name>

    - -

    The name of the refactor branch.

    - -

    EXAMPLES

    - -
    $ git refactor mainlib_refactor
    -...
    -$ git commit -m "Some changes"
    -...
    -$ git checkout master
    -$ git refactor finish mainlib_refactor
    -
    -$ $ git refactor -r upstream mainlib_refactor
    -
    - -

    AUTHOR

    - -

    Written by Jesús Espino <jespinog@gmail.com>
    -Modified by Mark Pitman <mark.pitman@gmail.com>

    - -

    REPORTING BUGS

    - -

    <https://github.com/tj/git-extras/issues>

    - -

    SEE ALSO

    - -

    <https://github.com/tj/git-extras>

    - - -
      -
    1. -
    2. May 2018
    3. -
    4. git-refactor(1)
    5. -
    - -
    - - diff --git a/man/git-refactor.md b/man/git-refactor.md deleted file mode 100644 index b1f9676..0000000 --- a/man/git-refactor.md +++ /dev/null @@ -1,48 +0,0 @@ -git-refactor(1) -- Create refactor branch -========================================= - -## SYNOPSIS - -`git-refactor` [-r|--remote [remote_name]] [finish] <name> - -## DESCRIPTION - - Create the given refactor branch - -## OPTIONS - - <-r|--remote [remote_name]> - - Setup a remote tracking branch using `remote_name`. If `remote_name` is not supplied, use `origin` by default. - - <finish> - - Merge and delete the refactor branch. - - <name> - - The name of the refactor branch. - -## EXAMPLES - - $ git refactor mainlib_refactor - ... - $ git commit -m "Some changes" - ... - $ git checkout master - $ git refactor finish mainlib_refactor - - $ $ git refactor -r upstream mainlib_refactor - -## AUTHOR - -Written by Jesús Espino <> -Modified by Mark Pitman <> - -## REPORTING BUGS - -<> - -## SEE ALSO - -<> diff --git a/man/index.txt b/man/index.txt index a45fc5d..2f1fae2 100644 --- a/man/index.txt +++ b/man/index.txt @@ -5,10 +5,8 @@ git-authors(1) git-authors git-back(1) git-back git-browse(1) git-browse git-brv(1) git-brv -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-coauthor(1) git-coauthor @@ -48,7 +46,6 @@ 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-remote(1) git-rename-remote