rc/gitconfig

52 lines
1.2 KiB
Plaintext
Raw Permalink Normal View History

2020-12-23 15:39:13 +00:00
[init]
defaultBranch = dev
2015-12-12 21:45:03 +00:00
[core]
excludesfile = ~/.gitignore_global
2021-08-27 18:37:30 +00:00
[user]
useConfigOnly = true
[include]
path = ~/.git_user
[master]
2015-11-24 18:04:50 +00:00
autosetuprebase = always
[color]
2015-11-24 18:04:50 +00:00
ui = auto
[push]
default = current
2016-09-28 14:29:54 +00:00
[merge]
tool = vimdiff
conflictstyle = diff3
[alias]
# Basics
2020-11-20 18:21:54 +00:00
am = commit --amend
2020-02-19 17:15:56 +00:00
br = branch
2020-12-23 16:17:27 +00:00
c = commit
2020-02-19 17:15:56 +00:00
ck = checkout
cl = clone
cm = commit -m
cma = commit -am
2020-02-19 17:15:56 +00:00
ds = diff --staged
2020-01-20 14:58:56 +00:00
g = grep -En
2020-02-19 17:15:56 +00:00
gf = grep -Fn --
gi = grep -iFn --
st = status -s
# Tweak defaults
bra = branch -ra
# List aliases
la = "!git config -l | grep alias | cut -c 7-"
# Pretty branch graph
lg = log --oneline --abbrev-commit --all --graph --decorate --color
2018-05-17 17:28:27 +00:00
# Graph with additional info (author, date)
lga = log --graph --abbrev-commit --decorate --format=format:'%C(yellow)%h%C(reset) %C(bold red)%d%C(reset) %C(blue)[%an]%C(reset) %C(green)(%ai)%C(reset) - %C(white)%s%C(reset)' --all
# Same but also list modified files
lf = log --oneline --name-status --all --graph --decorate --color
2018-05-17 17:28:27 +00:00
# pull rebase
prb = pull --rebase
2020-06-19 01:56:07 +00:00
[status]
submoduleSummary = true
[pull]
rebase = false