diff options
| -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 |
