blob: aa5c1fc2fd28e3d191a9ced1faa7db432e5a8166 (
plain) (
blame)
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
|
[color]
ui = true
status = auto
branch = auto
[core]
editor = vim
excludesfile = ~/.gitignore_global
[merge]
tool = vimdiff
[user]
name = a14m
email = [email protected]
username = a14m
signingkey = 7A690E8DFE36C63A99355B1B76296F290BE3A016
; [branch]
; autosetuprebase = always
[diff]
algorithm = patience
[alias]
st = status
br = branch
df = diff
co = checkout
cm = commit --verbose
ls = log --oneline --decorate
la = log --oneline --decorate --numstat
lg = log --oneline --graph
; ld = log --pretty=format:"%C(yellow)%h\\ %ad%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --date=relative
; fl = log -u
ldf = diff --cached HEAD^
wdf = diff --color-words --word-diff-regex='[A-z0-9_]+|[^[:space:]]'
; up = "!git remote update -p; git merge --ff-only @{u}"
[push]
default = current
[pull]
rebase = true
[fetch]
prune = true
[commit]
gpgsign = true
|