-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
63 lines (63 loc) · 1.53 KB
/
.gitconfig
File metadata and controls
63 lines (63 loc) · 1.53 KB
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
[credential "https://github.com"]
username = raltman2_uhg
[credential "https://github.com/raltman_uhgsand"]
username = raltman2_uhgsand
[credential "https://github.com/Open-Lens"]
username = inquinity
[credential "https://github.com/inquinity"]
username = inquinity
[user]
name = Robert Altman
email = robert.altman@optum.com
#email = robert@AltmanSoftwareDesign.com
[core]
excludesfile = ~/.gitignore_global
[diff]
tool = bc
[merge]
tool = bc
[difftool "sourcetree"]
cmd = /usr/local/bin/bcomp \"$LOCAL\" \"$REMOTE\"
path = -ro
[mergetool "sourcetree"]
cmd = /usr/local/bin/bcomp \"$LOCAL\" \"$REMOTE\" \"$BASE\" \"$MERGED\"
trustExitCode = true
[mergetool "bc"]
trustExitCode = true
[commit]
template = ~/.stCommitMsg
[alias]
co = checkout
sw = switch
br = branch
ci = commit
st = status
last = log -l HEAD --
alias = config --get-regexp ^alias\\.
unstage = restore --staged
undo = reset --soft HEAD~1
changes = diff
incoming = "!git remote update -p; git log ..@{u}"
outgoing = log @{u}..
vdiff = difftool -y
origin = config --get remote.origin.url
cp = cherry-pick
purge = !git reflog expire --expire=now --all && git gc --prune=now --aggressive
[init]
defaultBranch = main
[credential]
helper =
helper = /usr/local/share/gcm-core/git-credential-manager
[credential "https://dev.azure.com"]
useHttpPath = true
[http]
postBuffer = 524288000
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[push]
autoSetupRemote = true
[advice]
statusHints = false