-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
47 lines (47 loc) · 1.02 KB
/
.gitconfig
File metadata and controls
47 lines (47 loc) · 1.02 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
[user]
name = Craig Genner
email = craig.genner@credera.co.uk
# signingkey = 11577110685AF48D
[color]
branch = auto
diff = auto
interactive = auto
status = auto
[alias]
com = !git checkout main && git pull
co = checkout
ci = commit
st = status
dc = diff --cached
lg = log --decorate --stat --graph --pretty=format:'%C(yellow)%h%Creset (%ar - %Cred%an%Creset), %s%n'
lp = log -p
lps = log -p --show-signature
logp = log -p
br = branch
bl = branch -l
mm = merge main
[help]
autocorrect = 20
[core]
whitespace = cr-at-eol
excludesfile = ~/.gitignore
autocrlf = input
editor = vi
[http]
sslVerify = false
[pull]
rebase = true
[push]
default = simple
autoSetupRemote = true
[status]
showUntrackedFiles = all
[commit]
#template = ~/.gitmessage
#gpgsign = true
[remote "origin"]
prune = true
[diff]
noprefix = true
[credential]
helper = store