I'm looking for an implementation of git which is accessible from nodejs - does such a beast exist?
|
closed as not a real question by Bobby, Frédéric Hamidi, Baz, Linger, Shahbaz Dec 14 '12 at 16:08
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
Looks like there are now several options for using git from node: |
|||
|
|
|
Note sure if there's a git library for Node but you can also just execute a shell process directly, example:
|
||||
|
|
|
there is also node-gitteh as libgit2 bindings, but both gitteh and christkv/node-git were not of the quality and completeness I needed I wrote treeeater a spawn git wrapper, which is callable with plain javascript objects instead of strings, can parse some output (git log → commit objects, git ls-tree → tree object hierachy) and runs async. It is in active use and supports all git commands, atleast for calling them and piping their output chunk or line wise. You can stick to git man-pages to get the documentation to each command. |
|||
|
|
