commit e01619546ef8a72c7d53d8592d2cf802c9689a8f
parent a2ae80bb7857afbcddd749940dff3e91e8509c45
Author: Ed van Bruggen <edvb54@gmail.com>
Date: Sun, 26 Oct 2014 19:15:09 -0700
Git: Make ls alais based on number of commits not since monday
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gitconfig b/gitconfig
@@ -15,15 +15,15 @@
interactive = auto
grep = auto
[alias]
- ls = log --pretty=format:"%C(yellow)%h\\ %ad%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --date=relative --since=last.mon
la = log --pretty=format:"%C(yellow)%h\\ %ad%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --date=relative
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
diffc = diff --cached
s = status
+ A = add -A .
c = commit
p = push
- A = add -A .