-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitconfig
59 lines (59 loc) · 1.24 KB
/
.gitconfig
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
56
57
58
59
[user]
name = AndriusK
email = [email protected]
[alias]
s = status
com = commit
ch = checkout
lms = !git local-master-sync-check
# current-branch= !git branch | grep '*' | cut -d ' ' -f 2
di = diff
dc = diff --cached
amend = commit --amend
aall = add --all
head = !git l -1
h = !git head
hp = "!show_git_head"
r = !git l -30
ra = !git r --all
ff = merge --ff-only
pullff = pull --ff-only
noff = merge --no-ff
l = "!pretty_git_log"
la = !git l --all
ls = ls-files
[core]
excludesfile = /Users/andriusk/.gitignore_global
autocrlf = False
editor = \"codein\" fileeditor
# editor = \"/Users/andriusk/vm/GitExtensions/GitExtensions.exe\" fileeditor
[pull]
rebase = false
[push]
default = simple
[color]
ui = auto
[color "branch"]
current = yellow bold
master = green bold
local = green bold
remote = cyan bold
[credential]
helper = cache --timeout=262800
[i18n]
filesEncoding = utf-8
[core]
autocrlf = input
eol = native
[pager]
branch = false
[filter "lfs"]
clean = git lfs clean %f
smudge = git lfs smudge %f
required = true
[branch]
autosetuprebase = never
[merge]
tool = kdiff3
[diff]
guitool = kdiff3