Skip to content

Commit

Permalink
0.0.6 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Knadler committed Dec 12, 2012
1 parent e2d136a commit 31a4701
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 3 deletions.
9 changes: 9 additions & 0 deletions HISTORY.md
@@ -1,3 +1,12 @@
# Alpha Releases

## 0.0.6 (2012-12-12)

* adds 'feats help' command
* changes 'update-feats' to 'feats update'
* fixes serialization bug
* adds much better 'feats update' dialogue

## 0.0.4 (2012-12-11)

* adds `version` command
Expand Down
23 changes: 21 additions & 2 deletions README.md
Expand Up @@ -12,7 +12,7 @@ See [alias](#alias) for instructions.

## Usage

#### With Alias
#### With alias

If you alias `git-feats`, just keep using `git` like you always have. Occasionally, you will complete feats and it will look like this:

Expand All @@ -36,14 +36,29 @@ no changes added to commit (use "git add" and/or "git commit -a")
```

#### Without Alias
#### Without alias

If you don't alias `git` to `git-feats` you can still use `git-feats` in place of `git`:

```
$ git-feats status
```

#### git-feats commands

git-feats also has commands that git-feats specific and don't mess with git.


```
$ git feats
usage: git feats <command>
commands:
update Update your feats and command history on gitfeats.com
help Display git-feats specific help
```

## Alias

Add the following to your `.bash_profile` or other startup script:
Expand All @@ -58,6 +73,10 @@ alias git=git-feats

Linking your account is as easy as:

```
git config --global github.user <your github username>
```

```
git config --global feats.key <your api key>
```
Expand Down
2 changes: 1 addition & 1 deletion lib/git-feats/version.rb
@@ -1,3 +1,3 @@
module GitFeats
VERSION = "0.0.5"
VERSION = "0.0.6"
end

0 comments on commit 31a4701

Please sign in to comment.