2012-08-06 13:39:40 +02:00
|
|
|
# remember more commands
|
|
|
|
|
HISTSIZE=10000
|
|
|
|
|
|
|
|
|
|
# add timestamps to history entries
|
|
|
|
|
HISTTIMEFORMAT="%d.%m.%Y %H:%M %Z #"
|
|
|
|
|
|
|
|
|
|
# aliases
|
|
|
|
|
alias grep='grep --color'
|
2012-08-06 16:38:54 +02:00
|
|
|
alias gdp='git diff --color HEAD^ HEAD'
|
2012-08-06 16:24:52 +02:00
|
|
|
alias gl='git log --pretty=format:"%Cgreen%h %Creset %s %Cgreenby %an (%ar) %Cred %d" --graph'
|
2012-08-06 16:38:54 +02:00
|
|
|
alias gdc='git diff --color HEAD^'
|