-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig.skel
67 lines (63 loc) · 1.7 KB
/
.gitconfig.skel
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
#\_____________________________________________________________________________
#
# ~/.gitconfig
#
[user]
name = jcopp
email = <email-here>
#\_____________________________________________________________________________
#
[delta]
side-by-side = true
syntax-theme = TwoDark
hunk-header-style = plain
#\_____________________________________________________________________________
#
[init]
defaultBranch = main
[core]
excludesfile = ~/.gitignore-global
pager = delta
[push]
default = current
[diff]
algorithm = histogram
[merge]
conflictStyle = zdiff3
[alias]
co = checkout
st = status
lc = log ORIG_HEAD.. --stat --no-merges
lol = log --graph --decorate --oneline
lola = log --graph --decorate --abbrev-commit --all
lg = log --graph --abbrev-commit --pretty=jobi-nonames
ll = log --graph --abbrev-commit --pretty=jobi
ls = log --graph --stat --pretty=short
[pretty]
jobi = format:%C(yellow)%h%Creset %C(cyan)%d%Creset %s %Cred%aN%Creset %Cgreen%cr%Creset
jobi-nonames = format:%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)%Creset
[color]
ui = auto
diff = auto
status = auto
interactive = auto
branch = auto
[credential]
#helper = osxkeychain
#helper = /usr/local/share/gcm-core/git-credential-manager
#\_____________________________________________________________________________
#
[github]
user = jobicoppola
email = <email-here>
;token = <github-token-here>
[gist]
extension = 'py'
browse = no
[heroku]
user = jobicoppola
email = <email-here>
[credential "https://dev.azure.com"]
useHttpPath = true
#\_____________________________________________________________________________
#