30 lines
1.1 KiB
INI
30 lines
1.1 KiB
INI
|
[core]
|
||
|
autocrlf = input
|
||
|
whitespace = trailing-space,space-before-tab,tabwidth=4
|
||
|
safecrlf
|
||
|
[alias]
|
||
|
lg = log --reverse --max-count=4 --oneline --pretty='format:%C(yellow)%h %d %Creset%p %C("#60A0FF")%cr %Cgreen %cn %GT trust%Creset%n%s%n'
|
||
|
graph = log --max-count=20 --graph --pretty=format:'%C(yellow)%h%Creset %s %Cgreen(%cr) %C(bold blue)%cn %GT%Creset' --abbrev-commit
|
||
|
alias = ! git config --get-regexp ^alias\\. | sed -e s/^alias\\.// -e s/\\ /\\ =\\ / | grep -v ^'alias ' | sort
|
||
|
fixws = !"\
|
||
|
if (! git diff-files --quiet .) && \
|
||
|
(! git diff-index --quiet --cached HEAD) ; then \
|
||
|
git commit -m FIXWS_SAVE_INDEX && \
|
||
|
git add -u :/ && \
|
||
|
git commit -m FIXWS_SAVE_TREE && \
|
||
|
git rebase --whitespace=fix HEAD~2 && \
|
||
|
git reset HEAD~ && \
|
||
|
git reset --soft HEAD~ ; \
|
||
|
elif (! git diff-files --quiet .) ; then \
|
||
|
git add -u :/ && \
|
||
|
git commit -m FIXWS_SAVE_TREE && \
|
||
|
git rebase --whitespace=fix HEAD~ && \
|
||
|
git reset HEAD~ ; \
|
||
|
an elif (! git diff-index --quiet --cached HEAD) ; then \
|
||
|
git commit -m FIXWS_SAVE_INDEX && \
|
||
|
git rebase --whitespace=fix HEAD~ && \
|
||
|
git reset --soft HEAD~ ; \
|
||
|
fi"
|
||
|
[commit]
|
||
|
gpgSign = true
|