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