As I rarely use git-pull(1) and instead fetch and act manually, I'd rather have it to just sync the submodules.
7 lines
121 B
Bash
Executable File
7 lines
121 B
Bash
Executable File
#!/usr/bin/env zsh
|
|
|
|
emulate -L zsh -o err_return
|
|
|
|
git submodule sync --recursive
|
|
git submodule update --init --recursive
|