Project

git-dust

0.0
No commit activity in last 3 years
No release in over 3 years
A Git sub command for Dust Commits Workflow.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

 Project Readme

git dust

A Git sub command for Dust Commits Workflow.

License X11 Gem Version Dependency Status Build Status Coverage Status

Installation

Depenedencies:

  • git
  • Ruby

Install via RubyGems:

$ gem install git-dust

Install standalone version:

$ curl https://raw.githubusercontent.com/nishidayuya/git-dust/master/lib/git/dust.rb \
| sed -e 's/^# FOR STANDALONE: //' \
> path-environment-directory/git-dust
$ chmod a+x path-environment-directory/git-dust

Usage

To create many dust commits and squash them:

$ git add foo.txt
$ git dust commit
<commit foo.txt with commit message "git dust commit.">
$ git dust commit -a
<commit modified files with commit message "git dust commit.">
...
$ git dust fix
<squash dust commits and open editor to write commit message>

News

  • 0.0.0: 2014-07-12 first release.
    • "git dust commit" and "git dust fix".

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request