覆盖 git pull 的 bash 别名以包含 --recurse-submodules
这两个功能似乎对我没有任何影响?有人能让它们工作并告诉我我做错了什么吗? 我正在尝试覆盖git pull以包含递归子模块,同时保持其他 git 命令正常工作 #https://superuser.com/a/479816 function git() { case $* in -pull* ) shift 1; command git pull --recurse-submodules "$@" ;; * ) command git "$@" ;; esac } function ls() { case $* in -l...