UNPKG

git-owner

Version:
53 lines (41 loc) 1.03 kB
# git-owner Print "ownership" information for a file in git. ## Install ``` $ npm install -g git-owner ``` ## Usage Typically you'll probably want to use it on the command line: ``` # Who has contributed most to the Ember.js README? $ git owner README.md 35% tom@sproutcore.com 23% gilesb@gmail.com 11% peter.wagenet@gmail.com 9% bradfol@gmail.com 5% trevor@well.com 5% robert.w.jackson@me.com 4% ilya@burstcreations.com 2% andyhmltn@gmail.com 2% charles@sproutcore.com 2% bluewhale1982@gmail.com 1% tomhuda@strobecorp.com 1% wycats@gmail.com 1% cory.forsyth@gmail.com 1% tricknotes.rs@gmail.com 1% gimil@mozy.com 1% nwjsmith@gmail.com 1% builes.adolfo@gmail.com 1% bryan@brynary.com 200 lines. ``` You can also use it as a library: ```js var gitBlameStats = require('../lib').gitBlameStats; gitBlameStats(process.argv[2], function(err, stats) { console.log(stats); }); ``` ## Contributing Contributions are welcome. Just fork, add your feature/bugfix on a branch with tests, and submit a pull request.