mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-28 22:19:59 +02:00
Add GitInfo
This commit adds a `GitInfo` object to `Page` if `EnableGitInfo` is set. It then also sets `Lastmod` for the given `Page` to the author date provided by Git. The Git integrations should be fairly performant, but it adds "some time" to the build, somewhat depending on the Git history size. If you want, you can run without during development and turn it on when deploying to the live server: `hugo --enableGitInfo`. Fixes #2102
This commit is contained in:
committed by
GitHub
parent
186db7cd7a
commit
e8380e612f
@@ -216,6 +216,9 @@ func (h *HugoSites) Build(config BuildCfg) error {
|
||||
}
|
||||
}
|
||||
|
||||
// TODO(bep) make a more logical grouping of these.
|
||||
h.assembleGitInfo()
|
||||
|
||||
for _, s := range h.Sites {
|
||||
if err := s.postProcess(); err != nil {
|
||||
return err
|
||||
@@ -288,6 +291,7 @@ func (h *HugoSites) Rebuild(config BuildCfg, events ...fsnotify.Event) error {
|
||||
h.setupTranslations(firstSite)
|
||||
|
||||
if changed.source {
|
||||
h.assembleGitInfo()
|
||||
for _, s := range h.Sites {
|
||||
if err := s.postProcess(); err != nil {
|
||||
return err
|
||||
|
Reference in New Issue
Block a user