From 9049967232d01882dc7d9941d0ee5d08053a786f Mon Sep 17 00:00:00 2001
From: Josh McKinney Pretty listing of branches sorted by the date of their last commit. -r | --reverse Reverses the output to put the most recent branch at the bottom of the list. This is useful when there are large amount of branches as the most recent branch is shown just above the next prompt. This can be configured as the default by setting Simply run To display the rows in reverse order: Written by Øsse <https://github.com/Osse> Create/Merge the given feature branch. Create or merge the given feature branch. The feature branch name is made from the PREFIX, the SEPARATOR, and the NAME joined together. The branch The default PREFIX is The branch NAME may be specified as multiple words which will be joined with <-a|--alias branch_prefix> The branch prefix to use, or The branch prefix to use, or <-s|--separator branch_separator> The separator to use for joining the branch prefix and the branch name, or The separator to use for joining the branch prefix and the branch name, or Setup a remote tracking branch using <-r|--remote [remote_name]> Setup a start point when the branch created. If Setup a remote tracking branch using Merge and delete the feature branch. <--from [start_point]> Run a squash merge when Setup a start point when the branch created. If The name of the feature branch. <finish> Merge and delete the feature branch. <--squash> Run a squash merge. <name> The name of the feature branch. You can configure the default branch prefix and separator via git config options. $ git config --global add git-extras.feature.prefix "branch_prefix" The default $ git config --global add git-extras.feature.prefix "prefix" $ git config --global add git-extras.feature.separator "-" $ git config --global add git-extras.feature.separator "-" The default SYNOPSIS
-git-brvgit-brv [-r|--reverse]DESCRIPTION
OPTIONS
+
+git-extras.brv.reverse to true in your git options.EXAMPLES
git brvgit brv --reverse
+
$ git brv --reverse
+2020-01-08 master origin/master 265b03e Merge pull request #816 from spacewander/git-sed-pathspec
+2020-01-14 adds-git-brv fork/adds-git-brv 1ca0d76 Fixes #700: Adds git-brv
+AUTHOR
-
diff --git a/man/git-brv.md b/man/git-brv.md
index 562a0a7..2e03d0d 100644
--- a/man/git-brv.md
+++ b/man/git-brv.md
@@ -3,12 +3,18 @@ git-brv(1) -- List branches sorted by their last commit date
## SYNOPSIS
-`git-brv`
+`git-brv` [-r|--reverse]
## DESCRIPTION
Pretty listing of branches sorted by the date of their last commit.
+## OPTIONS
+
+ -r | --reverse
+
+ Reverses the output to put the most recent branch at the bottom of the list. This is useful when there are large amount of branches as the most recent branch is shown just above the next prompt. This can be configured as the default by setting `git-extras.brv.reverse` to true in your git options.
+
## EXAMPLES
Simply run `git brv`
@@ -17,6 +23,11 @@ git-brv(1) -- List branches sorted by their last commit date
2020-01-14 adds-git-brv fork/adds-git-brv 1ca0d76 Fixes #700: Adds git-brv
2020-01-08 master origin/master 265b03e Merge pull request #816 from spacewander/git-sed-pathspec
+ To display the rows in reverse order: `git brv --reverse`
+
+ $ git brv --reverse
+ 2020-01-08 master origin/master 265b03e Merge pull request #816 from spacewander/git-sed-pathspec
+ 2020-01-14 adds-git-brv fork/adds-git-brv 1ca0d76 Fixes #700: Adds git-brv
## AUTHOR
diff --git a/man/git-feature.1 b/man/git-feature.1
index c448ec5..98fd4a7 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" "September 2023" "" "Git Extras"
+.TH "GIT\-FEATURE" "1" "December 2023" "" "Git Extras"
.
.SH "NAME"
\fBgit\-feature\fR \- Create/Merge feature branch
@@ -173,7 +173,7 @@ $ (features\.dependency\-tracking) git checkout master
$ git feature finish dependency tracking
.
.TP
-Use a \fBgit\-feature\fR option flag as part of a branch name:
+Use a \fBgit\-feature\fR option or the \fBfinish\fR command as part of a branch name:
.
.IP
$ git feature \-\- finish remote
@@ -184,6 +184,12 @@ $ git feature \-\- finish remote
.br
$ (feature/finish\-remote) git commit \-m "Some changes"
.
+.br
+$ (feature/finish\-remote) git checkout main
+.
+.br
+$ git feature finish \-\- finish remote
+.
.SH "AUTHOR"
Written by Jesús Espino <\fIjespinog@gmail\.com\fR>
.
diff --git a/man/git-feature.html b/man/git-feature.html
index 16a201b..5796b18 100644
--- a/man/git-feature.html
+++ b/man/git-feature.html
@@ -77,56 +77,58 @@
SYNOPSIS
-git-feature [-a|--alias branch_prefix] [-s|--separator branch_separator] [-r|--remote [remote_name]] <name>
-git-feature [-a|--alias branch_prefix] [-s|--separator branch_separator] finish [--squash] <name>git-feature [-a|--alias PREFIX] [-s|--separator SEPARATOR] [-r|--remote [REMOTE_NAME]] [--from START_POINT] NAME...git-feature [-a|--alias PREFIX] [-s|--separator SEPARATOR] finish [--squash] NAME...DESCRIPTION
-name may be specified as multiple words which will be joined with - characters. If any word should start with a -, the name should be preceded by --, which will signal that option parsing should be ignored.feature and SEPARATOR is /, which can be changed (see OPTIONS and GIT CONFIG for details).-. If the branch name contains the word finish or is another OPTION, -- should be passed to stop OPTION parsing. See the EXAMPLES for details.OPTIONS
-
+
--a PREFIX, --alias PREFIX:feature if not supplied.feature if not supplied.-s SEPARATOR, --separator SEPARATOR:/ if not supplied.-r [REMOTE_NAME], --remote [REMOTE_NAME]:/ if not supplied.remote_name. If remote_name is not supplied, use origin by default.--from START_POINT:--from is not supplied, use the current branch by default. This option will be ignored when finishing a branch.finish:remote_name. If remote_name is not supplied, use origin by default.--squash:finishing the feature branch.--from is not supplied, use the current branch by default.GIT CONFIG
+
-git-extras.feature.prefix:branch_prefix is feature.git-extras.feature.separator:branch_separator is /.EXAMPLES
@@ -168,20 +170,22 @@ $ git feature dependency tracking
$ (features.dependency-tracking) ...
$ (features.dependency-tracking) git checkout master
$ git feature finish dependency tracking
git-feature option flag as part of a branch name:git-feature option or the finish command as part of a branch name:$ git feature -- --remote
+
$ git feature -- finish remote
...
-$ (feature/--remote) git commit -m "Some changes"
Written by Jesús Espino <jespinog@gmail.com>
-Modified by Mark Pitman <mark.pitman@gmail.com>
-Modified by Carlos Prado <carlos.prado@cpradog.com>
-Modified by Austin Ziegler <halostatue@gmail.com>
Written by Jesús Espino <jespinog@gmail.com>
+Modified by Mark Pitman <mark.pitman@gmail.com>
+Modified by Carlos Prado <carlos.prado@cpradog.com>
+Modified by Austin Ziegler <halostatue@gmail.com>
<https://github.com/tj/git-extras>
+<https://github.com/tj/git-extras>, git-create-branch(1), git-delete-branch(1)