include fetch in pull

This commit is contained in:
Denis Lehmann 2023-10-04 13:32:41 +02:00
parent 2d8c766536
commit 07d8849432

6
gis
View file

@ -11,7 +11,7 @@ text_yellow=$'\e[33m'
function print_usage { function print_usage {
cat <<EOF cat <<EOF
Usage: gis [COMMANDS] [OPTIONS] Usage: gis [OPTIONS] [COMMAND]
Show a status summary of all Git repositories which are found recursively in Show a status summary of all Git repositories which are found recursively in
current work directory. If the colon-separated environment variable \$GIS_PATH current work directory. If the colon-separated environment variable \$GIS_PATH
@ -19,7 +19,8 @@ is set, the declared directories will be used instead.
COMMANDS COMMANDS
fetch Execute 'git fetch --prune --all' for all found repositories fetch Execute 'git fetch --prune --all' for all found repositories
pull Execute 'git pull' for all found repositories which are behind upstream pull Execute 'git pull' for all found repositories which are behind
upstream, includes 'gis fetch'
OPTIONS OPTIONS
-p, --path PATH Use PATH for searching Git repositories -p, --path PATH Use PATH for searching Git repositories
@ -61,6 +62,7 @@ while (( "$#" )); do
error "Unsupported command ${text_bold}$1${text_reset}, did you mean ${text_bold}fetch${text_reset}?" error "Unsupported command ${text_bold}$1${text_reset}, did you mean ${text_bold}fetch${text_reset}?"
;; ;;
pull) pull)
fetch=true
pull=true pull=true
shift shift
;; ;;