dotfiles/.config/git/config

185 lines
5.5 KiB
Plaintext
Raw Normal View History

2020-03-08 18:58:52 +00:00
[core]
autocrlf = input
editor = nvim
pager = diffr --colors refine-added:none:background:0x33,0x66,0x33:bold --colors added:none:background:0x33,0x44,0x33 --colors refine-removed:none:background:0x66,0x33,0x33:bold --colors removed:none:background:0x44,0x33,0x33 | less --RAW-CONTROL-CHARS --quit-on-intr
2021-07-20 15:21:27 +00:00
hooksPath = .dev/githooks
2021-01-11 11:27:55 +00:00
[interactive]
diffFilter = diffr --colors refine-added:none:background:0x33,0x66,0x33:bold --colors added:none:background:0x33,0x44,0x33 --colors refine-removed:none:background:0x66,0x33,0x33:bold --colors removed:none:background:0x44,0x33,0x33
2020-03-31 20:32:43 +00:00
[submodule]
recurse = true
[rerere]
enabled = true
2021-07-04 18:00:51 +00:00
# Parallelize
2020-03-31 20:32:43 +00:00
[pack]
threads = 0
2021-07-04 18:00:51 +00:00
[checkout]
workers = 0
[fetch]
parallel = 0
[submodule]
fetchJobs = 0
2020-03-31 20:32:43 +00:00
[pull]
ff = only
[checkout]
defaultRemote = origin
[init]
defaultBranch = main
2020-06-03 10:26:15 +00:00
[diff]
tool = nvim
submodule = log
context = 2
2020-06-03 10:26:15 +00:00
[merge]
tool = nvim
[mergetool "nvim"]
cmd = nvim -f -c \"Gdiffsplit!\" \"$MERGED\"
prompt = false
[difftool "nvim"]
cmd = "nvim -d \"$LOCAL\" \"$REMOTE\""
2020-06-03 10:26:15 +00:00
2020-03-31 20:32:43 +00:00
# Automatically push to branch with matching name
2020-03-08 18:58:52 +00:00
[push]
default = current
[status]
showStash = true
2020-03-31 20:32:43 +00:00
# Disable pagination for branch commmand by default
2020-03-08 18:58:52 +00:00
[pager]
branch = false
2020-03-31 20:32:43 +00:00
[grep]
lineNumber = true
2021-04-11 20:47:51 +00:00
[log]
date=local
2020-03-31 20:32:43 +00:00
2020-03-08 18:58:52 +00:00
[color "status"]
added = green
changed = yellow
2020-03-31 20:32:43 +00:00
untracked = magenta
[user]
email = 27jf@pm.me
name = xeruf
2020-03-31 20:32:43 +00:00
[mailmap]
file = /home/janek/.config/yadm/.mailmap
[http]
lowSpeedLimit = 1000
lowSpeedTime = 3
2021-01-27 10:26:24 +00:00
[url "ssh://github.com/"]
pushInsteadOf = https://github.com/
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
2020-03-08 18:58:52 +00:00
[alias]
fzf = !fzf --preview='git diff HEAD --color=always -- {}' --tiebreak=end,index --multi
2021-11-04 11:23:32 +00:00
fzs = !cut -z -c2- | git fzf --read0 -d' ' --nth=2.. --bind='alt-enter:execute(nvim {2..})' --preview='test {1} != \\? && git diff --color HEAD -U5 -- {2..} | $(git config interactive.diffFilter) || find {2..} -type f | xargs -I% diff --recursive --color=always -u /dev/null %' | cut -c3-
2020-12-12 15:51:14 +00:00
# GET INFO
2021-05-05 06:47:29 +00:00
s = !git stl && git stb
st = stb .
stb = status --short --branch
2021-05-20 10:16:20 +00:00
sv = --paginate status -v
svv = --paginate status -vv
r = remote -v
b = branch -vv
2020-12-07 20:55:25 +00:00
ba = b -a
main = !cat "$(git rev-parse --git-path refs/remotes/origin/HEAD)" | cut -d'/' -f4
2021-05-05 06:47:29 +00:00
sw = switch
sc = switch -c
2021-05-20 10:16:20 +00:00
sd = switch -d
sm = !git switch $(git main)
2021-07-17 20:48:33 +00:00
find = log --patch --all --full-history
ref = reflog show --pretty=tformat:'%C(auto)%h%d %s %Cgreen(%cd) %Cblue<%an>%Creset'
2021-07-25 21:44:58 +00:00
hf = log --patch --follow --find-renames=1 --
2021-07-17 20:48:33 +00:00
rev = rev-parse --short
head = rev-parse --short HEAD
2020-03-08 18:58:52 +00:00
root = rev-parse --show-toplevel
dir = rev-parse --git-dir
curbranch = symbolic-ref --short HEAD
2020-12-12 15:51:14 +00:00
upstream = !git rev-parse --abbrev-ref --symbolic-full-name @{upstream} || git rev-parse --abbrev-ref --symbolic-full-name @{push} || echo origin/$(git curbranch)
2020-10-23 12:02:54 +00:00
2021-10-08 10:26:22 +00:00
lgr = log --pretty=tformat:'%C(auto)%h%d %s %Cgreen(%cd) %Cblue<%an>%Creset' --date=human --graph
lg = lgr HEAD @{push}
lo = log --pretty=tformat:'%C(auto)%h%d %s %Cgreen(%cd) %Cblue<%an>%Creset' --date=human --no-merges
2021-04-11 20:47:51 +00:00
lp = log -p --date=local
my = lo --author [Jj]anek
2021-04-11 20:47:51 +00:00
standup = my --since yesterday --all
co-authors = !git log | grep -i Co-Authored | awk '!a[$0]++'
2021-06-23 15:23:28 +00:00
when = !git for-each-ref --sort=committerdate --format='%(refname:short) * %(authorname) * %(committerdate:relative)' refs/remotes/ # List all branches with their last updates
2021-01-11 11:27:55 +00:00
d = diff
2021-05-20 10:16:20 +00:00
dm = !git diff $(git merge-base $(git main) HEAD)
2021-01-11 11:27:55 +00:00
dw = diff --color-words
dc = diff --color-words="[^[:space:]]|([[:alnum:]]|UTF_8_GUARD)+"
2021-06-23 15:23:28 +00:00
du = diff @{push}
2021-01-11 11:27:55 +00:00
# MODIFY
2020-12-12 15:51:14 +00:00
# Local Changes
a = add -u
aa = add -u .
2020-10-03 09:37:54 +00:00
ap = add -p
2021-09-18 20:05:23 +00:00
af = !git status --porcelain --no-renames --untracked-files=all -z | grep -v '^\\w ' -z | git fzs | git -c advice.addEmptyPathspec=false add --verbose --pathspec-from-file=-
sf = "!git status --porcelain --no-renames -z | sed -z 's/^\\(\\w\\) / \\1/' | git fzs >/tmp/git-sf && git -c advice.addEmptyPathspec=false add --intent-to-add --pathspec-from-file=/tmp/git-sf; git commit --only -v --pathspec-from-file=/tmp/git-sf"
2020-10-03 09:37:54 +00:00
c = commit -v
2021-06-23 15:23:28 +00:00
cad = !git diff-tree --no-commit-id --name-only -r HEAD | git commit -v --amend --pathspec-from-file=- # Amend commit with all already changed files
cme = commit -v --edit --message # Commit with message but edit it
2020-12-12 15:51:14 +00:00
cp = cherry-pick
2021-05-06 06:29:05 +00:00
rb = rebase
rbi = rebase --interactive
rbc = rebase --continue
rbu = rebase @{upstream}
2021-06-23 15:23:28 +00:00
rbm = !git rebase $(git main)
2020-12-12 15:51:14 +00:00
sta = stash
2021-05-05 06:47:29 +00:00
stl = !git --no-pager stash list --pretty=tformat:'%gd%h - %s (%cr)'
2020-12-12 15:51:14 +00:00
sts = stash show -v
stp = stash pop
2021-05-05 06:47:29 +00:00
std = !git stash drop && git stl
rh = reset HEAD~
rs = reset --keep
rsu = reset --keep @{upstream}
2021-03-25 09:27:44 +00:00
unstage = restore --staged --
recover = restore --worktree --staged --
2020-12-10 16:34:56 +00:00
format-head = !git stash && git-clang-format HEAD~ && git commit -a --amend --no-edit && git stash pop
sun = submodule update --no-fetch
2020-12-12 15:51:14 +00:00
# Update from remote
su = submodule update --init --recursive
2020-12-12 15:51:14 +00:00
f = fetch
fa = fetch --all
fs = !git fetch && git st
2021-11-06 22:26:22 +00:00
lr = pull --rebase
2021-04-21 17:51:14 +00:00
lu = !git pull upstream ${1:-$(git curbranch)}
2020-12-12 15:51:14 +00:00
rg = rmgonebranches
gcr = !git gc && git repack -a -d
2020-12-12 15:51:14 +00:00
# Change remote
2021-04-21 17:51:14 +00:00
ruu = !git fetch upstream && git reset --keep upstream/${1:-$(git curbranch)} && git push --no-verify --force-with-lease
2021-09-18 20:05:23 +00:00
luu = !git pull upstream ${1:-$(git curbranch)} && git push --no-verify
2020-12-12 15:51:14 +00:00
pf = push --force-with-lease
cap = !git commit --amend --no-edit && git push --force-with-lease
2020-12-12 15:51:14 +00:00
2021-02-16 12:11:05 +00:00
[includeIf "gitdir:yadm/repo.git"]
path = "~/.config/yadm/gitconfig"
[includeIf "gitdir:~/data/.git"]
path = "config-data"