node-git icon indicating copy to clipboard operation
node-git copied to clipboard

A node.js git implementation modeled on ruby-git

Results 7 node-git issues
Sort by recently updated
recently updated
newest added

I see this is quite an old project and is not really updated anymore. It would be nice to refactor it to use ES6 classes which would make the code...

First of all, thanks @christkv for starting it and providing us node users with basic access to the git api. Given that the last release was published 4 years ago...

I'm constantly getting the "no such sha found" error in the `get_raw_object_by_sha1` function. I'm using Node `0.12.4` and NPM `2.11.3`. The error occurs on the last line of the method...

The vast majority of commit messages appear to have an empty string as commit message. This appears to be due to lib/commit.js:11-13 forcing _message to have a value and thus...

The method `Commit.prototype.show` calls `this.repo.git.show` if the commit has no parents. However, `git.show` does not exist, so this results in a `TypeError`

I couldn't find any documentation. It seems that there are some basic functions missing, namely: - push - pull - fetch - addRemote - reset I haven't gone through them...