-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitconfig
More file actions
40 lines (40 loc) · 703 Bytes
/
gitconfig
File metadata and controls
40 lines (40 loc) · 703 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# This is Git's per-user configuration file.
[user]
name = Josh Malkinson
email = joshua.malkinson@coop.co.uk
[alias]
a = add
bi = bisect
br = branch
ci = commit
co = checkout
d = diff
ds = diff --staged
l = log
la = last
last = log -1 HEAD -p
lo = log --oneline
m = merge
p = pull
ps = push
r = restore
rb = rebase
rs = restore --staged
s = status
st = stash
sw = switch
unst = unstage
unstage = restore --staged --
[pull]
rebase = true
[fetch]
prune = true
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[init]
defaultBranch = main
[push]
autoSetupRemote = true