๐Ÿ“ฆ RobLoach / dotfiles

๐Ÿ“„ .gitconfig ยท 83 lines
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83[user]
	email = robloach@gmail.com
	name = Rob Loach
	signingkey = BF759F3D663BE9DECDA2A773627C60834A74A21A
	username = RobLoach

[core]
	excludesfile = ~/.dotfiles/.gitconfig.core.excludesfile
	autocrlf = false
	safecrlf = false
	ignorecase = false
	longpaths = true
	editor = nano

[color]
	diff = auto
	status = auto
	branch = auto
	ui = auto
	interactive = auto

[color "branch"]
	current = yellow bold
	local = green bold
	remote = cyan bold

[color "diff"]
	meta = yellow bold
	frag = magenta bold
	old = red bold
	new = green bold
	whitespace = red reverse

[color "status"]
	added = green bold
	changed = yellow bold
	untracked = red bold

[pull]
    rebase = false

[diff]
	renames = copies

[github]
	user = RobLoach

[commit]
	#template = ~/.dotfiles/.gitconfig.commit.template
	gpgsign = true

[help]
	autocorrect = 1

[init]
	defaultBranch = master

[alias]
	co = checkout
	cm = commit -m
	p = push
	# Show verbose output about tags, branches or remotes
	tags = tag -l
	branches = branch -a
	remotes = remote -v
	last = log -1 HEAD --stat
	st = status -sb

[include]
	path = ~/.dotfiles/dependencies/gitalias/gitalias.txt

[filter "lfs"]
	clean = git-lfs clean -- %f
	smudge = git-lfs smudge -- %f
	process = git-lfs filter-process
	required = true

# Limit memory usage when checking out repositories.
[pack]
	windowMemory = 100m
	packSizeLimit = 100m
	threads = 1