dotfiles

Unnamed repository; edit this file 'description' to name the repository.
git clone git://edryd.org/dotfiles
Log | Files | Refs

commit 89283b58360899fcc711e4e074b0add7415dfbb9
parent 804d977844efdfb29fe32bfdbf32681c6655eb63
Author: Ed van Bruggen <edvb54@gmail.com>
Date:   Tue, 25 Jul 2017 23:21:30 -0700

git: verbose commit, alias s to stash list

Rename difflast to diffl, remove diffw

Diffstat:
gitconfig | 7++++---
1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/gitconfig b/gitconfig @@ -19,10 +19,9 @@ ll = log --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --numstat ls = "!git la -10" l = "!git ll -1" - difflast = diff --cached HEAD^ - diffw = diff --word-diff + diffl = diff --cached HEAD^ diffc = diff --cached - s = status + s = stash list A = add -A . c = commit p = push @@ -32,3 +31,5 @@ helper = cache --timeout=43200 [merge] tool = vimdiff +[commit] + verbose = true