diff options
| author | Owen Jacobson <owen.jacobson@grimoire.ca> | 2014-03-03 16:37:02 -0500 |
|---|---|---|
| committer | Owen Jacobson <owen.jacobson@grimoire.ca> | 2014-03-03 16:37:02 -0500 |
| commit | 1a3ae2a011bdf31cbe5f8c64a9004fbdb41d3c7e (patch) | |
| tree | e78e379a0e91d77ff1b9fe542d434ee174fd644b | |
| parent | d8ed91da3e492ec6fbd61c6bc57666bd65784437 (diff) | |
| parent | a735e466c10798e40c5387034b8c87ab71b3a076 (diff) | |
Merge pull request #4 from ojacobson/bsummary
Added 'bsummary' (Branch Summary) command.
| -rw-r--r-- | aliases.gitconfig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/aliases.gitconfig b/aliases.gitconfig index 528f49c..ba95312 100644 --- a/aliases.gitconfig +++ b/aliases.gitconfig @@ -35,6 +35,8 @@ start = checkout --track origin/master -b # Branch log for the current branch: `git blog [log options]` blog = log HEAD@{upstream}..HEAD + # Branch one-line summary (equivalent to `git blog --oneline`) + bsummary = log --oneline HEAD@{upstream}..HEAD # Aggregate diff of the current branch: `git bdiff [diff options]` bdiff = diff HEAD@{upstream} HEAD # Upload a branch to personal fork: `git publish` - note that this |
