Skip to content

git helper scripts for feature and hotfixes branches

Notifications You must be signed in to change notification settings

martyzz1/gitfeatures

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 

Repository files navigation

git features

git helper scripts for managing feature branches and issuing pull requests

Installation

$ pip install git+git://github.com/robinedwards/gitfeatures.git

Install for development:

$ git clone git://github.com/robinedwards/gitfeatures.git $ cd gitfeatures $ python setup.py develop

Background

These scripts are designed to follow the github git work flow http://scottchacon.com/2011/08/31/github-flow.html

Features

Create a new feature (create a new local and remote branch prefixed 'feature')

$ git feature new html_pruning

Issue pull request for the current branch (to be reviewed by someone else).

$ git pullrequest

After pull request has been excepted and merged into master finish the feature (delete local and remote branch)

$ git feature finish

Or if your not currently working on the feature branch

$ git feature finish html_pruning

Or if you wish to create a stable branch from a specific checkout

$ git stable new

will create a branch called stable_YYYYMMDD

Or if you wish to switch to the current latest stable branch

$ git stable

Hot fixes

For bugs and hot fixes the same functionality is used with 'hotfix' instead of 'feature'

$ git hotfix ie7_menu ... $ git hotfix finish

About

git helper scripts for feature and hotfixes branches

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%