diff options
author | yushyin <yushyin@saga> | 2019-04-29 20:28:50 +0200 |
---|---|---|
committer | yushyin <yushyin@saga> | 2019-04-29 20:28:50 +0200 |
commit | 27f8594c3f6a294a5671eec0170354c0157b4986 (patch) | |
tree | 091c52f958b499a52a512d511061ffef5fd6c709 | |
parent | 9a134293ecf46cd73d493b25d35239dfe05651f1 (diff) | |
download | dotfiles-27f8594c3f6a294a5671eec0170354c0157b4986.tar.gz dotfiles-27f8594c3f6a294a5671eec0170354c0157b4986.tar.xz |
Git: Correct spelling in configdein.vim
-rw-r--r-- | git/config | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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{}); \ |