moved Git aliases to gitconfig

This commit is contained in:
Steffen Vogel 2018-12-26 11:21:39 +01:00
parent 5d0011f44d
commit 0bb320f192
2 changed files with 15 additions and 12 deletions

View file

@ -14,18 +14,7 @@ alias cp='cp -i'
alias dquilt='quilt --quiltrc=${HOME}/.quiltrc-dpkg'
# git Aliases
alias gcl='git clone'
alias ga='git add'
alias gall='git add .'
alias gd='git diff'
alias g='git'
alias gs='git status'
alias gp='git push'
alias gpo='git push origin '
alias gb='git branch'
alias gc='git commit'
alias gl='git log --oneline'
alias gll='git log --graph --pretty=oneline --abbrev-commit'
alias g=git
# I'd like to learn the vi keybinings
alias pico=vi

View file

@ -56,4 +56,18 @@
smtpServerPort = 587
[alias]
addnw = !sh -c 'git diff -U0 -w --no-color "$@" | git apply --cached --ignore-whitespace --unidiff-zero -'
l = log --oneline
ll = log --graph --pretty=oneline --abbrev-commit
lll = "log --pretty=format:'%h %ad | %s%d [%an]' --graph --date=short"
a = add
d = diff
p = push
po = push origin
c = commit
s = status
cl= clone
co = checkout
br = branch
type = 'cat-file -t'
dump = 'cat-file -p'