all repos — dotfiles @ ad26f7b39dc11e0239f2e116bdc4093d840e50ba

linux dotfiles

home/.gitconfig (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
[core]
    pager = delta

[user]
	email = pg@prithu.dev
	name = Prithu Goswami
	signingkey = A17AFDEA2EF9A76AA868285DE2AB251EDB8945E5

[alias]
    lg1 = log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' --all
    lg2 = log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold cyan)%aD%C(reset) %C(bold green)(%ar)%C(reset)%C(bold yellow)%d%C(reset)%n''          %C(white)%s%C(reset) %C(dim white)- %an%C(reset)' --all
    lgh = log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ah)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' --all
    lgs = log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset)%C(bold yellow)%d%C(reset)' --all
    lg  = !"git lg1"
    sra = !"git log --format=%H -n 10 --all | xargs git show"
    sr  = !"git log --format=%H -n 10 | xargs git show"
    pushall = !"git remote | xargs -L1 git push"
    a = !"git status --short | grep \"^ M\\|^ D\\|^\\?\\?\" | fzf -m | awk '{ print $2 }' | xargs git add"
    root = "rev-parse --show-toplevel"
    st = status --short
    ci = commit
    ca = commit --amend
    caa = commit -a --amend
    br = branch
    bra = branch -a
    co = checkout
    df = diff
    bb = !better-git-branch.sh
    ; up = pull --rebase
[pull]
	rebase = false
[init]
	defaultBranch = main

[interactive]
    diffFilter = delta --color-only

[delta]
    navigate = true  # use n and N to move between diff sections

; [merge]
;     conflictstyle = diff3

[diff]
    colorMoved = default
[advice]
	addEmptyPathspec = false


[rerere]
	enabled = true
[maintenance]
	repo = /home/prithu/src/ddt
[branch]
	sort = -committerdate