Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 15 days 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 (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2024-09-06T07:05:33.000Z (2 months ago)
- Last Synced: 2024-10-12T12:25:41.057Z (about 1 month 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
[![Build Status](https://travis-ci.org/saintedlama/git-visit.svg?branch=master)](https://travis-ci.org/saintedlama/git-visit)
[![Coverage Status](https://coveralls.io/repos/github/saintedlama/git-visit/badge.svg?branch=master)](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