140 lines
3.4 KiB
Plaintext
140 lines
3.4 KiB
Plaintext
[core]
|
|
autocrlf = input
|
|
editor = nvim
|
|
[submodule]
|
|
recurse = true
|
|
[rerere]
|
|
enabled = true
|
|
# Accelerate packing by automatically determining thread count
|
|
[pack]
|
|
threads = 0
|
|
|
|
[pull]
|
|
ff = only
|
|
[checkout]
|
|
defaultRemote = origin
|
|
|
|
[diff]
|
|
tool = nvim
|
|
[merge]
|
|
tool = nvim
|
|
[mergetool "nvim"]
|
|
cmd = nvim -f -c \"Gdiffsplit!\" \"$MERGED\"
|
|
prompt = false
|
|
[difftool "nvim"]
|
|
cmd = "nvim -d \"$LOCAL\" \"$REMOTE\""
|
|
|
|
# Automatically push to branch with matching name
|
|
[push]
|
|
default = current
|
|
# Disable pagination for branch commmand by default
|
|
[pager]
|
|
branch = false
|
|
[grep]
|
|
lineNumber = 1
|
|
|
|
[color "status"]
|
|
added = green
|
|
changed = yellow
|
|
untracked = magenta
|
|
|
|
[user]
|
|
email = 27jf@pm.me
|
|
name = xerus2000
|
|
|
|
[mailmap]
|
|
file = /home/janek/.config/yadm/.mailmap
|
|
|
|
[http]
|
|
lowSpeedLimit = 1000
|
|
lowSpeedTime = 3
|
|
|
|
[alias]
|
|
# GET INFO
|
|
st = status -sb
|
|
stv = --paginate status -v
|
|
stvv = --paginate status -vv
|
|
|
|
r = remote -v
|
|
b = branch -vv
|
|
ba = b -a
|
|
|
|
ref = reflog
|
|
rev = rev-parse --short
|
|
head = rev-parse --short HEAD
|
|
root = rev-parse --show-toplevel
|
|
dir = rev-parse --git-dir
|
|
curbranch = symbolic-ref --short HEAD
|
|
upstream = !git rev-parse --abbrev-ref --symbolic-full-name @{upstream} || git rev-parse --abbrev-ref --symbolic-full-name @{push} || echo origin/$(git curbranch)
|
|
#dir = !git root | sed 's/$/\\/.git/' | grep --color=never "/" # grep ensures a proper exit status on fail
|
|
|
|
lg = log --pretty=tformat:'%C(auto)%h%d %s %Cgreen(%cd) %Cblue<%an>%Creset' --date=human --graph
|
|
lo = log --pretty=tformat:'%C(auto)%h%d %s %Cgreen(%cd) %Cblue<%an>%Creset' --date=human --no-merges
|
|
ln = !git --no-pager lo -5
|
|
my = lo --author [Jj]anek
|
|
standup = lo --since yesterday --author [Jj]anek --all
|
|
co-authors = !git log | grep -i Co-Authored | awk '!a[$0]++'
|
|
when = git for-each-ref --sort=committerdate --format='%(refname:short) * %(authorname) * %(committerdate:relative)' refs/remotes/ # List all branches with their last updates
|
|
|
|
# Local Changes
|
|
a = add -u
|
|
aa = add -u .
|
|
ap = add -p
|
|
c = commit -v
|
|
co = checkout
|
|
cb = checkout -b
|
|
|
|
cp = cherry-pick
|
|
rb = rebase
|
|
rbc = rebase --continue
|
|
|
|
sta = stash
|
|
stl = stash list
|
|
sts = stash show -v
|
|
stp = stash pop
|
|
std = stash drop
|
|
|
|
rh = reset HEAD~
|
|
rs = reset --keep
|
|
ru = reset --keep @{upstream}
|
|
unstage = reset HEAD --
|
|
|
|
format-head = !git stash && git-clang-format HEAD~ && git commit -a --amend --no-edit && git stash pop
|
|
|
|
# Housekeeping
|
|
gcr = !git gc && git repack -a -d
|
|
sup = !git branch --set-upstream-to @{push}
|
|
|
|
# Update from remote
|
|
f = fetch
|
|
fa = fetch --all
|
|
fs = !git fetch && git st
|
|
lu = !git pull upstream $(git curbranch)
|
|
|
|
rg = rmgonebranches
|
|
sm = submodule update --init --recursive
|
|
|
|
# Change remote
|
|
luu = !git pull upstream $(git curbranch) && git push --no-verify
|
|
p = push
|
|
pf = push --force-with-lease
|
|
cap = !git commit --all --amend --no-edit && git push --force-with-lease
|
|
|
|
# COMMIT SHORTHANDS
|
|
cme = commit -v --edit --message
|
|
# yadm
|
|
cgit = !yadm cme "config/git:" -- $XDG_CONFIG_HOME/git/config $CONFIG_SHELLS/git $HOME/.local/bin/git-*
|
|
cvim = !yadm cme "config/nvim:" -- $XDG_CONFIG_HOME/nvim/init*
|
|
cshell = !yadm cme "config/shell:" -- $CONFIG_SHELLS
|
|
cbin = !yadm cme "bin:" -- $HOME/.local/bin
|
|
|
|
# data
|
|
journal = !git cme "notes/journal:" -- $(git root)/2-standards/notes/journal
|
|
note = !git cme "notes:" -- $(git root)/2-standards/notes
|
|
|
|
[filter "lfs"]
|
|
clean = git-lfs clean -- %f
|
|
smudge = git-lfs smudge -- %f
|
|
process = git-lfs filter-process
|
|
required = true
|