From a735e466c10798e40c5387034b8c87ab71b3a076 Mon Sep 17 00:00:00 2001 From: Owen Jacobson Date: Mon, 3 Mar 2014 16:34:59 -0500 Subject: Added 'bsummary' (Branch Summary) command. Turns out I use --oneline a lot. --- aliases.gitconfig | 2 ++ 1 file changed, 2 insertions(+) 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 -- cgit v1.2.3