Update submodules in a git repository to the latest, but exclude one..
git submodule foreach '[ "$path" == "submodule-to-exclude" ] || git pull origin master' |
This comment has been minimized.
This comment has been minimized.
git submodule foreach '[ "$path" = "library/PhpExcel" ] || git status' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This comment has been minimized.
I had to change
==
to=
in order to make it work (ubuntu 16.04)