From the working directory of a git repository, I start git instaweb using git instaweb --httpd=webrick
. However, in the tree view of the resulting website, there is no link to each file's "blame". I tried to enable "blame" by adding the following to ~/.gitconfig
:
[gitweb]
blame = true
Even after I restart git instaweb (git instaweb stop
, git instaweb --httpd=webrick
), the "blame" links are still missing. How do I enable "blame" when using git instaweb?