Skip to content

Commit

Permalink
add wiki for git-guilt
Browse files Browse the repository at this point in the history
  • Loading branch information
spacewander committed Apr 19, 2015
1 parent 634fbb5 commit 34c9a48
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions Commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
- [`git delete-tag`](#git-delete-tag)
- [`git delete-merged-branches`](#git-delete-merged-branches)
- [`git fresh-branch`](#git-fresh-branch)
- [`git guilt`](#git-guilt)
- [`git merge-into`](#git-merge-into)
- [`git graft`](#git-graft)
- [`git alias`](#git-alias)
Expand Down Expand Up @@ -476,6 +477,24 @@ Create empty local branch `name`:
$ git fresh-branch docs
```
## git guilt
Calculate the change in blame between two revisions
```bash
# Find blame delta over the last three weeks
$ git guilt `git log --until="3 weeks ago" --format="%H" -n 1` HEAD
Paul Schreiber +++++++++++++++++++++++++++++++++++++++++++++(349)
spacewander +++++++++++++++++++++++++++++++++++++++++++++(113)
Mark Eissler ++++++++++++++++++++++++++
CJ +++++
nickl- -
Jesse Sipprell -
Evan Grim -
Ben Parnell -
hemanth.hm --
```
## git merge-into
Merge `src` branch into `dest`, and keep yourself on current branch. If `src` branch not given, it will merge current one to `dest`:
Expand Down

0 comments on commit 34c9a48

Please sign in to comment.