File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed
Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -883,7 +883,7 @@ $ (main) git ...
883883
884884## git fresh-branch
885885
886- Create empty local branch `name `:
886+ Create empty local branch `docs `:
887887
888888```bash
889889$ git fresh-branch docs
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ check_bash_script() {
2525
2626check_git_extras_cmd_list () {
2727 local whitelist=(' extras' )
28- for cmd in ${whitelist[*]} ; do
28+ for cmd in " ${whitelist[@]} " ; do
2929 test " $1 " == " $cmd " && return
3030 done
3131
@@ -54,7 +54,7 @@ check_documentation() {
5454check_Commands_page () {
5555 # These are special cases. All listed together, so we ignore them
5656 local whitelist=(' bug' ' chore' ' feature' ' refactor' )
57- for cmd in ${whitelist[*]} ; do
57+ for cmd in " ${whitelist[@]} " ; do
5858 test " $1 " == " $cmd " && return
5959 done
6060
Original file line number Diff line number Diff line change 1+ # shellcheck shell=bash
12# bash completion support for git-extras.
23
34_git_changelog (){
You can’t perform that action at this time.
0 commit comments