How to specify strategy -recurse-subodules in SmartGit for git fetch

SmartGit explicitly uses a submodule update strategy no

. How do I rewrite it to use a strategy on-demand

?

SmartGit command executed: git.exe fetch --progress --prune --recurse-submodules=no origin

I tried to overwrite the fetch command with an alias: git config --global alias.fetch 'git fetch --recurse-submodules=on-demand'

I don't see any changes in the SmartGit log window.

+3


source to share


1 answer


With SmartGit 17, it is not possible to change strategy --recurse-submodules=

. However, in the Repository | The settings on the Pull tab you can configure to Always pull new commits, tags and branches from a submodule .. p>



+3


source







All Articles