summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoryushyin <yushyin@saga>2019-04-29 20:28:50 +0200
committeryushyin <yushyin@saga>2019-04-29 20:28:50 +0200
commit27f8594c3f6a294a5671eec0170354c0157b4986 (patch)
tree091c52f958b499a52a512d511061ffef5fd6c709
parent9a134293ecf46cd73d493b25d35239dfe05651f1 (diff)
downloaddotfiles-27f8594c3f6a294a5671eec0170354c0157b4986.tar.gz
dotfiles-27f8594c3f6a294a5671eec0170354c0157b4986.tar.xz
Git: Correct spelling in configdein.vim
-rw-r--r--git/config6
1 files changed, 3 insertions, 3 deletions
diff --git a/git/config b/git/config
index 03c6e91..cc473ed 100644
--- a/git/config
+++ b/git/config
@@ -47,7 +47,7 @@
'"
# ff = merge --ff-only
- # tomerge <branch> <regex> tells you which branches matching <regex> have not been merged into <branch> yet
+ # tomerge [<branch> [<regex>]] tells you which branches matching <regex> have not been merged into <branch> yet
# <branch> defaults to HEAD
# <regex> defaults to .
tomerge = !"perl -MGit -E' \
@@ -57,7 +57,7 @@
} Git::command(qw{branch -r --no-merged}, $br); \
'"
- # topics <regex>
+ # topics [<regex>]
# show topics (branches) matching the ai/description format or <regex>
topics = !"perl -MGit -MList::Util=uniq -E' \
my $rx = shift // qr{[a-z]{1,3}/.}; \
@@ -68,7 +68,7 @@
} Git::command(qw/branch --sort=committerdate -r/) \
'"
- # rmbranch <repository> branchname deletes local und remote branch
+ # rmbranch [<repository>] <branchname> deletes local and remote branch
# <repository> defaults to origin
rmbranch = !"perl -MGit -E' \
my ($re, $br) = (@ARGV > 1? shift : q{origin}, shift // q{}); \