foreach: rendre -g et -S compatibles
This commit is contained in:
parent
4f7bcbcede
commit
f8952225cf
6
foreach
6
foreach
|
@ -83,7 +83,7 @@ OPTIONS
|
|||
répertoire parent (valide uniquement avec l'option -p)
|
||||
-S, --git-status
|
||||
Equivalent à spécifier la commande 'git status --p'
|
||||
Utiliser avec -G ou -C
|
||||
Utiliser par exemple avec -g, -G ou -C
|
||||
-G, --git-projects
|
||||
Equivalent à '--ptitle -p */.git --' e.g '$scriptname -G git pull' pour
|
||||
mettre à jour les dépôts situés dans un répertoire
|
||||
|
@ -124,7 +124,11 @@ parse_args "$@"; set -- "${args[@]}"
|
|||
|
||||
case "$command" in
|
||||
git-status-p)
|
||||
if [ -n "$shortcut" ]; then
|
||||
set -- git status --p "$@"
|
||||
else
|
||||
set -- "$@" -- git status --p
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
case "$shortcut" in
|
||||
|
|
Loading…
Reference in New Issue