Fetch and display git notes

master
Jordan Atwood 2 years ago
parent d3775228ce
commit 68413512e1
Signed by: nightfirecat
GPG Key ID: 615A619C2D73A6DF
  1. 6
      src/.gitconfig

@ -57,6 +57,8 @@
textconv = astextplain textconv = astextplain
[fetch] [fetch]
prune = true prune = true
[format]
notes = true
[help] [help]
autocorrect = 20 autocorrect = 20
[interactive] [interactive]
@ -67,6 +69,8 @@
diffFilter = ((type diff-highlight >/dev/null 2>&1 && diff-highlight) || $(git config core.pager)) diffFilter = ((type diff-highlight >/dev/null 2>&1 && diff-highlight) || $(git config core.pager))
[log] [log]
follow = true follow = true
[notes]
displayRef = refs/notes/*
[pager] [pager]
# Build or install `diff-highlight` to some $PATH present location for # Build or install `diff-highlight` to some $PATH present location for
# improved diff highlights. Falls back on plain `core.pager` if not present. # improved diff highlights. Falls back on plain `core.pager` if not present.
@ -78,6 +82,8 @@
default = current default = current
[rebase] [rebase]
autosquash = true autosquash = true
[remote.origin]
fetch = +refs/notes/*:refs/notes/*
[status] [status]
submodulesummary = true submodulesummary = true
[submodule] [submodule]

Loading…
Cancel
Save