Git module: How to provide a config setting when cloning a repository

I wonder if it’s possible to provide some config values when initially cloning a repository. The command line would look like this:

git clone -b 2.17.0 --recurse-submodules --config filter.lfs.smudge=true https://github.com/piwik/piwik.git

Using the git_config module doesn’t seem to be an option because I only need that setting for one specific working copy and the destination directory does not yet exist at this time.