🍀 Local git statistics including GitHub-like contributions calendars.
Go to file
Ionică Bizău 94b9e10777 Minor fixes 2015-09-15 01:03:50 +03:00
.blah 📝 New docs 2015-09-15 00:54:00 +03:00
bin JSDoc comments 2015-09-14 17:29:40 +03:00
example Added example 2015-07-13 09:34:14 +03:00
lib Remove duplicated field 2015-09-15 00:52:47 +03:00
scripts Added the migration script to 2.x.x 2015-07-13 08:36:48 +03:00
.gitignore Added gitignore. 2015-01-25 21:50:10 +02:00
CONTRIBUTING.md Added CONTRIBUTING.md 2015-07-15 09:37:00 +03:00
DOCUMENTATION.md 📝 2015-09-15 15:27:46 +03:00
LICENSE 📝 Docs via Blah and relicense. 2015-07-13 09:40:25 +03:00
MIGRATION.md Minor fixes 2015-09-15 01:03:50 +03:00
README.md 📝 New docs 2015-09-15 00:54:00 +03:00
package.json JSDoc comments 2015-09-14 17:29:40 +03:00

README.md

git-stats

$ git-stats Donate now

Local git statistics, including a GitHub-like contributions calendars.

I'd be curious to see your calendar with all your commits. Ping me on Twitter (@IonicaBizau). 😄 Until then, here's my calendar:

git-stats

Contents

Installation

You can install the package globally and use it as command line tool:

# Install the package globally
npm i -g git-stats
# Initialize git hooks
# This is for tracking the new commits
curl -s https://raw.githubusercontent.com/IonicaBizau/git-stats/master/scripts/init-git-post-commit | bash

Then, run git-stats --help and see what the cli tool can do.

$ git-stats --help
TODO

Importing and deleting commits

I know it's not nice to start your git commit calendar from scratch. That's why I created git-stats-importer--a tool which imports or deletes the commits from selected repositories.

Check it out here: https://github.com/IonicaBizau/git-stats-importer

The usage is simple:

# Install the importer tool
$ npm install -g git-stats-importer

# Go to the repository you want to import
$ cd path/to/my-repository

# Import the commits
$ git-stats-importer

# ...or delete them if that's a dummy repository
$ git-stats-importer --delete

Importing all the commits from GitHub and BitBucket

Yes, that's also possible. I built a tool which downloads and then imports all the commits you have pushed to GitHub and BitBucket!

# Download the repository downloader
$ git clone https://github.com/IonicaBizau/repository-downloader.git

# Go to repository downloader
$ cd repository-downloader

# Install the dependencies
$ npm install

# Start downloading and importing
$ ./start

What about the GitHub Contributions calendar?

If you want to visualize the calendars that appear on GitHub profiles, you can do that using ghcal.

# Install ghcal
$ npm install -g ghcal

# Check out @alysonla's contributions
$ ghcal -u alysonla

For more detailed documentation, check out the repository: https://github.com/IonicaBizau/ghcal.

If want to get even more GitHub stats in your terminal, you may want to try github-stats--this is like git-stats but with data taken from GitHub.

Using the configuration file

You can tweak the git-stats behavior using a configuration file in your home directory: ~/.git-stats-config.json.

This file will contain a JSON object like below (in this example comments are added to explain what's going on, but you should not include them since the JSON format doesn't support such comments). Defaults are listed.

{
    // "DARK", "LIGHT" or an object interpreted by IonicaBizau/node-git-stats-colors
    "theme": "DARK"

    // The file where the commit hashes will be stored
  , "path": "~/.git-stats"

    // First day of the week
  , first_day: "Sun"

    // This defaults to *one year ago*
    // It can be any parsable date
  , since: undefined

    // This defaults to *now*
    // It can be any parsable date
  , until: undefined

    // Don't show authors by default
    // If true, this will enable the authors pie
  , authors: false

    // No global activity by default
    // If true, this will enable the global activity calendar in the current project
  , global_activity: false
}

Cross-platform compatibility

git-stats is working fine in terminal emulators supporting ANSI styles. It should work fine on Linux and OS X.

If you run git-stats to display graph on Windows, please use a terminal that can properly display ANSI colors. Cygwin Terminal is known to work, while Windows Command Prompt and Git Bash do not. Improvements are more than welcome! 💫

Example

Here is an example how to use this package as library.

// Dependencies
var GitStats = require("git-stats");

// Create the GitStats instance
var g1 = new GitStats();

// Display the ansi calendar
g1.ansiCalendar({
    theme: "DARK"
}, function (err, data) {
    console.log(err || data);
});

Documentation

For full API reference, see the DOCUMENTATION.md file.

How to contribute

Have an idea? Found a bug? See how to contribute.

License

KINDLY © Ionică BizăuThe LICENSE file contains a copy of the license.