-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitconfig
43 lines (32 loc) · 1.19 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
[user]
name = Alex Ciobica
email = [email protected]
[github]
user = c10b10
[core]
excludesfile = ~/.gitignore
mergeoptions = --no-edit
editor = /opt/homebrew/bin/nvim
[difftool]
prompt = false
[web]
browser = open
[push]
default = simple
[branch]
autosetuprebase = never
[alias]
sur = submodule update --init --recursive
l = log -18 --color=always --all --topo-order --pretty='format:%Cgreen%h%Creset %s%Cred%d%Creset %C(black bold)(by %an)%Creset'
ll = log --color=always --all --topo-order --pretty='format:%Cgreen%h%Creset %s%Cred%d%Creset %C(black bold)(by %an)%Creset'
gl = log -12 --color=always --all --graph --topo-order --pretty='format:%Cgreen%h%Creset %s %C(black bold)(by %an)%Creset%C(yellow bold)%d%Creset%n'
gll = log --color=always --all --graph --topo-order --pretty='format:%Cgreen%h%Creset %s %C(black bold)(%cr by %an)%Creset%C(yellow bold)%d%Creset%n'
ack = log --color=always --all --topo-order --pretty='format:%Cgreen%h%Creset %s%Cred%d%Creset %C(black bold)(by %an)%Creset' --full-history -S
unstage = reset HEAD
uns = reset HEAD
shelve = stash save --include-untracked
unshelve = stash pop
[credential]
helper = osxkeychain
[url "[email protected]:"]
insteadOf = https://gitlab.com/