https://github.com/saintedlama/git-visit
Git command line wrapping library to git visit commit history
https://github.com/saintedlama/git-visit
git nodejs ssh-key
Last synced: over 1 year ago
JSON representation
Git command line wrapping library to git visit commit history
- Host: GitHub
- URL: https://github.com/saintedlama/git-visit
- Owner: saintedlama
- License: isc
- Created: 2015-01-14T10:33:56.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2024-09-06T07:05:33.000Z (almost 2 years ago)
- Last Synced: 2025-03-17T22:14:30.011Z (over 1 year ago)
- Topics: git, nodejs, ssh-key
- Language: JavaScript
- Size: 1020 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# git-visit
[](https://travis-ci.org/saintedlama/git-visit)
[](https://coveralls.io/github/saintedlama/git-visit?branch=master)
Git command line wrapping library including SSH key handling, log and diff parsing
## Usage
```bash
> npm i git-visit
```
```javascript
const Repository = require('git-visit');
async function getLog() {
const repo = new Repository('/path/to/git/repository');
const log = await repo.log();
}
getLog().then(() => console.log('got a parsed git log'));
```
## API