-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
47 lines (47 loc) · 1.18 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
[color]
ui = auto
[color "remote"]
warning = red reverse
hint = dim green
[color "branch"]
current = bold red reverse
local = bold red
remote = bold red italic
[color "diff"]
meta = red bold
frag = magenta bold
old = red bold
new = green bold
[color "status"]
added = cyan
changed = green
untracked = bold red
[color "decorate"]
HEAD = bold red reverse
branch = bold red
remoteBranch = bold red italic
tag = reverse cyan
[alias]
allcommit = "!git add . && git commit -m"
tree = log --graph --abbrev-commit --decorate --date=format:'%d-%m-%Y %H:%M:%S' --format=format:'%C(reverse bold red)%h%C(reset) - %C(white)%ad%C(reset) %C(dim white)(%ar)%C(reset)%C(auto)%d%C(reset)%n'' %C(bold cyan)%s%C(reset) <%C(dim white)%an - %ae%C(reset)>' --all
tags = "show-ref --abbrev=6 --tags"
co = "checkout"
[core]
editor = /usr/bin/nvim
[url "ssh://[email protected]/"]
insteadOf = https://github.com/
[url "ssh://[email protected]/"]
insteadOf = https://bitbucket.org/
[url "https://"]
insteadOf = git://
[credential]
helper = store
[user]
email = [email protected]
name = Othi
[http]
sslVerify = false
[init]
defaultBranch = main
[push]
autoSetupRemote = true