mirror of
https://github.com/tj/git-extras.git
synced 2026-09-13 00:46:26 -04:00
add wiki for git-guilt
This commit is contained in:
parent
634fbb54b8
commit
34c9a486bf
19
Commands.md
19
Commands.md
|
|
@ -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)
|
||||
|
|
@ -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`:
|
||||
|
|
|
|||
Loading…
Reference in a new issue