-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgitconfig
executable file
·52 lines (47 loc) · 1.25 KB
/
gitconfig
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
[user]
email = [email protected]
name = hugolnx
username = hugolnx
[init]
defaultBranch = main
[push]
default = current
[pull]
default = current
[alias]
lg = log --graph --decorate --abbrev-commit --date=relative --pretty=format:"%C(auto)%h%C(red)%x09%<(30,trunc)%an%C(green)%x09%ad%C(white)%x09%s%C(auto)%d"
st = status
df = diff
cm = commit
cmm = commit -m
cma = !git add -A && git commit -m
ca = commit --amend
caa = !git add -A && git commit --amend
co = checkout
b = branch
ba = branch -a
bd = branch -D
undo = !git add -u . && git reset --hard
pll = !git submodule update --init --recursive && git pull --rebase --prune ${2:-origin}
psh = !git push ${2:-origin}
rb = rebase
sup = submodule update --init --recursive
mrg = merge --no-ff -m
[core]
editor = vim
excludesfile = ~/.gitignore
autocrlf = false
[color]
ui = auto
[color "branch"]
current = yellow bold
local = green bold
remote = cyan bold
[filter "lfs"]
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
#[mergetool "unityyamlmerge"]
# trustExitCode = false
# cmd = 'C:\\Program Files\\Unity\\Hub\\Editor\\2022.3.13f1\\Editor\\Data\\Tools\\UnityYAMLMerge.exe' merge -p "$BASE" "$REMOTE" "$LOCAL" "$MERGED"