27.December.2011

My ~/.gitconfig (excerpt)

[color]
    ui = true
[alias]
    st = status
    ci = commit
    cm = commit -m
    br = branch
    co = checkout
    cp = cherry-pick
    df = diff
    dc = diff --cached
    dt = difftool
    lg = log -p
    lol = log --graph --decorate --pretty=oneline --abbrev-commit
    lola = log --graph --decorate --pretty=oneline --abbrev-commit --all
    ls = ls-files

    # Show files ignored by git:
    ign = ls-files -o -i --exclude-standard
[core]
    autocrlf = input

Page 1 of 1