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
Right now we spawn a child process (git) and run a command, capturing stdout to get the results. A better approach might be to make this project a native binding to libgit2, an implementation of git's core functionality in C.
There are several benefits to this kind of approach:
The module's users would not have to install the git binary on their system
There's no way to manipulate stuff in memory (do we care?)
Calling into native code is probably less expensive than starting a process with each method call
The text was updated successfully, but these errors were encountered:
Right now we spawn a child process (git) and run a command, capturing stdout to get the results. A better approach might be to make this project a native binding to libgit2, an implementation of git's core functionality in C.
There are several benefits to this kind of approach:
git
binary on their systemThe text was updated successfully, but these errors were encountered: