Merge branch 'rs/submodule-summary-limit' into maint
"submodule summary --summary-limit" option did not support "--option=value" form. * rs/submodule-summary-limit: submodule summary: support --summary-limit=<n>
This commit is contained in:
commit
8ce0ab4ec8
@ -266,6 +266,11 @@ module_clone()
|
|||||||
(clear_local_git_env; cd "$sm_path" && GIT_WORK_TREE=. git config core.worktree "$rel/$b")
|
(clear_local_git_env; cd "$sm_path" && GIT_WORK_TREE=. git config core.worktree "$rel/$b")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
isnumber()
|
||||||
|
{
|
||||||
|
n=$(($1 + 0)) 2>/dev/null && test "$n" = "$1"
|
||||||
|
}
|
||||||
|
|
||||||
#
|
#
|
||||||
# Add a new submodule to the working tree, .gitmodules and the index
|
# Add a new submodule to the working tree, .gitmodules and the index
|
||||||
#
|
#
|
||||||
@ -814,14 +819,14 @@ cmd_summary() {
|
|||||||
for_status="$1"
|
for_status="$1"
|
||||||
;;
|
;;
|
||||||
-n|--summary-limit)
|
-n|--summary-limit)
|
||||||
if summary_limit=$(($2 + 0)) 2>/dev/null && test "$summary_limit" = "$2"
|
summary_limit="$2"
|
||||||
then
|
isnumber "$summary_limit" || usage
|
||||||
:
|
|
||||||
else
|
|
||||||
usage
|
|
||||||
fi
|
|
||||||
shift
|
shift
|
||||||
;;
|
;;
|
||||||
|
--summary-limit=*)
|
||||||
|
summary_limit="${1#--summary-limit=}"
|
||||||
|
isnumber "$summary_limit" || usage
|
||||||
|
;;
|
||||||
--)
|
--)
|
||||||
shift
|
shift
|
||||||
break
|
break
|
||||||
|
Loading…
Reference in New Issue
Block a user