Project

pigi

0.0
No commit activity in last 3 years
No release in over 3 years
Command line tool that automatically adds Pivotal Tracker story ID into your commit message.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

~> 1.7
~> 10.0

Runtime

>= 0
 Project Readme

Pigi

Pigi is a command line tool that automatically adds your Pivotal Tracker story ID into your commit message. The purpose of this tool is to speed up development process of developers using Github’s service hook for Pivotal Tracker.

Installation

To install this tool execute a command:

$ gem install pigi

Usage

When you begin to work on a particular story in Pivotal Tracker firstly set ID (for example ID = 12345678) of this story by executing a command:

$ pigi s 12345678 

Now every time you want to commit changes in your git repository you do it by typing:

$ pigi m "add awesome feature"

The result of this command is identical to this command:

$ git commit -m "add awesome feature [#12345678]"

If you want to work on another story just simply set pigi to your current story ID that you are working on:

$ pigi s 87654321