mirror of
https://github.com/bertptrs/vimconfig.git
synced 2025-12-25 20:40:32 +01:00
Make git blame a bit nicer
This commit is contained in:
@@ -41,12 +41,24 @@
|
|||||||
pushf = push --force-with-lease
|
pushf = push --force-with-lease
|
||||||
fixup = commit --fixup=@
|
fixup = commit --fixup=@
|
||||||
master = !git fetch && git checkout -B master origin/master
|
master = !git fetch && git checkout -B master origin/master
|
||||||
|
|
||||||
[rebase]
|
[rebase]
|
||||||
autosquash = true
|
autosquash = true
|
||||||
|
|
||||||
[fetch]
|
[fetch]
|
||||||
prune = true
|
prune = true
|
||||||
|
|
||||||
[sendemail]
|
[sendemail]
|
||||||
smtpserver = charon.bertptrs.nl
|
smtpserver = charon.bertptrs.nl
|
||||||
smtpserverport = 587
|
smtpserverport = 587
|
||||||
smtpuser = bert
|
smtpuser = bert
|
||||||
smtpencryption = tls
|
smtpencryption = tls
|
||||||
|
|
||||||
|
[blame]
|
||||||
|
# Ignore certain commits while generating "git blame." Filename taken from
|
||||||
|
# Github's pseudo-standard
|
||||||
|
ignoreRevsFile = .git-blame-ignore-revs
|
||||||
|
# Mark any lines that have had a commit skipped using --ignore-rev with a `?`
|
||||||
|
markIgnoredLines = true
|
||||||
|
# Mark any lines that were added in a skipped commit and can not be attributed with a `*`
|
||||||
|
markUnblamableLines = true
|
||||||
|
|||||||
Reference in New Issue
Block a user