From 44a50ee4ecb88b7f7700e5c98b50bfb918684218 Mon Sep 17 00:00:00 2001 From: Buddy Sandidge Date: Mon, 8 Dec 2014 11:04:32 -0800 Subject: [PATCH] Add git shortcuts to gitconfig --- gitconfig | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/gitconfig b/gitconfig index 8ca0caf..4d6e6fe 100644 --- a/gitconfig +++ b/gitconfig @@ -9,14 +9,21 @@ ui = auto [user] name = Buddy Sandidge - email = buddysandidge@gmail.com + email = buddy.sandidge@gmail.com [alias] br = branch ci = commit co = checkout cp = cherry-pick - df = diff + df = diff --ignore-space-change + dfw = diff --ignore-space-change --color-words + dfc = diff --ignore-space-change --cached + dfcw = diff --ignore-space-change --color-words --cached + dmw = diff --ignore-space-change --color-words master + dmn = diff master --name-only st = status -sb + dm = diff master + dmcw = diff master --color-words p = !git fetch --all && git fetch --tags && git pull && git submodule update sup = submodule update com = checkout master