dexfs
1/19/2017 - 10:40 AM

gitconfig

[color]
    ui = true
[core]
	editor = nano
    excludesfile = ~/.gitignore
[alias]
    aliases = config --get-regexp alias
    a = add
    br = branch
    ca = commit -v -a
    cam = commit --amend
    ci = commit
    co = checkout
    cp = cherry-pick
    d = diff
    dc = diff --cached
    dm = diff master
    f = fetch
    fix = commit --amend -C HEAD
    lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
    m = merge --no-ff
    mf = merge --ff-only
    p = push
    pl = pull
    r = reset
    rb = rebase
    rba = rebase --abort
    rbc = rebase --continue
    rbi = rebase --ignore
    ss = stash
    sa = stash apply
    sp = stash pop
    st = status
    un = reset HEAD
    wdiff = diff --word-diff
    hist = log --pretty=format:\"%h %ad | %s%d [%an]\" --graph --date=short
    lgsort = for-each-ref --sort=committerdate refs/heads/ --format='%(committerdate:short) %(refname:short)'
[help]
    autocorrect = 1
    format = web
[branch]
    autosetupmerge = true
[user]
    name = NAME
    email = EMAIL
[log]
	date = rfc