Git Product home page Git Product logo

git-extras's Introduction

Git Extras

Little git extras.

Installation

Clone / Tarball:

 $ make install

One-liner:

$ curl https://github.com/visionmedia/git-extras/raw/master/bin/git-update-extras | sh

Brew (buggy):

 $ brew install git-extras

Commands

  • git summary
  • git changelog
  • git commits-since
  • git count
  • git delete-branch
  • git delete-submodule
  • git delete-tag
  • git fresh-branch
  • git graft
  • git ignore
  • git release
  • git contrib
  • git repl
  • git undo
  • git update-extras
  • git setup
  • git touch

git-contrib

Output a user's contributions to a project, based on the author name:

$ git contrib visionmedia
visionmedia (18):
  Export STATUS_CODES
  Replaced several Array.prototype.slice.call() calls with Array.prototype.unshift.call()
  Moved help msg to node-repl
  Added multiple arg support for sys.puts(), print(), etc.
  Fix stack output on socket error
  ...

git-summary

Outputs a repo summary:

$ git summary

  project: express       
  commits: 1893          
  files  : 111           
  authors:               
   1285	visionmedia    
    478	Tj Holowaychuk 
     48	Aaron Heckmann 
     34	csausdev       
     26	ciaranj        
      6	Guillermo Rauch
      3	Nick Poulden   
      2	Brian McKinney 
      2	Benny Wong     
      1	Justin Lilly   
      1	James Herdman  
      1	Adam Sanderson 
      1	Viktor Kelemen 
      1	Gregory Ritter 
      1	Greg Ritter    
      1	ewoudj         
      1	isaacs         
      1	Matt Colyer    

This command can also take a commitish, and will print a summary for the range of commits included in the commitish:

$ git summary v42..

git-repl

GIT read-eval-print-loop:

 $ git repl
 
 git> ls-files
 History.md
 Makefile
 Readme.md
 bin/git-changelog
 bin/git-count
 bin/git-delete-branch
 bin/git-delete-tag
 bin/git-ignore
 bin/git-release
 
 git> quit

git-commits-since [date]

List of commits since the given date, defaulting to "last week":

$ git commits-since
... changes since last week
TJ Holowaychuk - Fixed readme
TJ Holowaychuk - Added git-repl
TJ Holowaychuk - Added git-delete-tag
TJ Holowaychuk - Added git-delete-branch

$ git commits-since yesterday
... changes since yesterday
TJ Holowaychuk - Fixed readme

git-count

Output commit total:

$ git count

total 1844

Output verbose commit count details:

$ git count --all

visionmedia (1285)
Tj Holowaychuk (430)
Aaron Heckmann (48)
csausdev (34)
ciaranj (26)
Guillermo Rauch (6)
Brian McKinney (2)
Nick Poulden (2)
Benny Wong (2)
Justin Lilly (1)
isaacs (1)
Adam Sanderson (1)
Viktor Kelemen (1)
Gregory Ritter (1)
Greg Ritter (1)
ewoudj (1)
James Herdman (1)
Matt Colyer (1)

total 1844

git-release

Release commit with the given <tag>.

$ git release 0.1.0

Does the following:

  • Commits changes (to changelog etc) with message "Release <tag>"
  • Tags with the given <tag>
  • Pushes the branch / tags

git-ignore

To lazy to open up .gitignore? me too! simply pass some patterns:

$ git ignore build "*.o" "*.log"
... added 'build'
... added '*.o'
... added '*.log'

Running git-ignore without a pattern will display the current patterns: $ git ignore build *.o *.log

git-delete-branch <name>

Deletes local and remote branch name.

$ git delete-branch integration

git-delete-submodule <name>

Deletes submodule name.

$ git delete-submodule lib/foo

git-delete-tag <name>

Deletes local and remote tag name.

$ git delete-tag 0.0.1

git-fresh-branch <name>

Creates empty local branch name.

$ git fresh-branch docs

git-graft <src-branch> <dest-branch>

Merge commits from src-branch into dest-branch which defaults to master.

$ git graft new_feature dev
$ git graft new_feature

git-changelog

Populates the file named matching change|history -i with the commits since the previous tag or since the project began when no tags are present. Opens the changelog in $EDITOR when set.

$ git changelog && cat History.md

n.n.n / 2010-08-05 
==================

* Docs for git-ignore. Closes #3
* Merge branch 'ignore'
* Added git-ignore
* Fixed <tag> in docs
* Install docs
* Merge branch 'release'
* Added git-release
* Passing args to git shortlog
* Added --all support to git-count
* Initial commit

Listing commits:

$ git changelog --list

* Docs for git-ignore. Closes #3
* Merge branch 'ignore'
* Added git-ignore
* Fixed <tag> in docs
* Install docs
* Merge branch 'release'
* Added git-release
* Passing args to git shortlog
* Added --all support to git-count
* Initial commit

git-undo

Removes the latest commit

git undo

Remove the latest 3 commits:

git undo 3

git-update-extras

Updates git extras. clones the repo to /tmp/git-extras, make installs, then cds back to the origin directory.

git-setup [dir]

Set up a git repository if one doesn't exist, add all files and make an initial commit. dir defaults to the current working directory.

git-touch [filename]

Call touch on the given file and add it to the current index. Used one-step creating new files.

git-extras's People

Contributors

agorf avatar ayj avatar drotiro avatar gvangool avatar jweslley avatar leto avatar ncb000gt avatar tj avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.