related to #165
https://git-scm.com/book/en/v2/Git-Tools-Submodules says there is a command called git submodule update, but ?git_submodule_list does not mention "update" anywhere? Is git_submodule_fetch() the R equivalent? Can you please add more documentation to ?git_submodule_list to explain the correspondence between command line git and gert functions?
Is there a gert equivalent of git submodule update --init --recursive ?
I tried git_submodule_fetch() but there are three issues relative to the git command:
- you have to name which submodule (I want to do all of them)
- it is not recursive
- it only fetches (does not checkout)
related to #165
https://git-scm.com/book/en/v2/Git-Tools-Submodules says there is a command called git submodule update, but ?git_submodule_list does not mention "update" anywhere? Is git_submodule_fetch() the R equivalent? Can you please add more documentation to ?git_submodule_list to explain the correspondence between command line git and gert functions?
Is there a gert equivalent of
git submodule update --init --recursive?I tried
git_submodule_fetch()but there are three issues relative to the git command: