You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Besides executing Git commands on the local filesystem, we would like to use dugite to run Git commands over SSH.
Currently, it is always child_process.execFile when calling GitProcess.exec.
Instead of that, could we have another kind of option, with an exec function which would act as a callback? We could use this callback to delegate into node-ssh and invoke Git over SSH. See here master...kittaakos:ssh.
Or expose the error handling code into a function. So that we could put together our customized call outside of dugite but reusing as much as possible from your work?
If you have a better recommendation, please let me know. Thank you!
The text was updated successfully, but these errors were encountered:
Besides executing Git commands on the local filesystem, we would like to use
dugite
to run Git commands over SSH.Currently, it is always
child_process.execFile
when callingGitProcess.exec
.Instead of that, could we have another kind of option, with an
exec
function which would act as a callback? We could use this callback to delegate intonode-ssh
and invoke Git over SSH. See here master...kittaakos:ssh.Or expose the error handling code into a function. So that we could put together our customized call outside of
dugite
but reusing as much as possible from your work?If you have a better recommendation, please let me know. Thank you!
The text was updated successfully, but these errors were encountered: