-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig-work
More file actions
25 lines (25 loc) · 802 Bytes
/
Copy path.gitconfig-work
File metadata and controls
25 lines (25 loc) · 802 Bytes
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
[core]
editor = nvim
excludesfile = ~/.gitignore
pager =
[user]
name = Cole Eason
email = cole@expensify.com
signingkey = 88F8F06DD13BA073!
[push]
default = current
[commit]
gpgsign = true
[pull]
rebase = false
[filter "lfs"]
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
[init]
defaultBranch = main
templateDir = /Users/cole/.git-template
[alias]
tidy = "!git branch --merged main | grep -vw main | xargs -n 1 git branch -d && git gc"
branches = "for-each-ref --sort=committerdate refs/heads/ --format='%(HEAD) %(color:yellow)%(refname:short)%(color:reset) - %(color:red)%(objectname:short)%(color:reset) - %(contents:subject) - %(authorname) (%(color:green)%(committerdate:relative)%(color:reset))'"