Skip to main content
Photo by Mikhail Vasilyev via Unsplash

.gitignore for GoHugo

This is a slight update on my previous post about the perfect .gitignore file for GoHugo. TLDR: The current optimum .gitignore content for a GoHugo project is the following (in addition to your own ignored files and folders):

1/public/
2/resources/_gen/
3/assets/jsconfig.json
4hugo.log
5hugo_stats.json
6.hugo_build.lock
7hugo.exe
8hugo.darwin
9hugo.linux

Let me tell you why:

/public/ is the folder containing your built website. You don’t want that in your git repository, because the content of it is based on what your websites layouts and contents are at the point of building the site. Running hugo will re-“create” this directory.

/resources/_gen/ is a folder with generated cache files that are related to your pipelines. They might change depending on your local setup or based on filenames and contents. They will be recreated once you change anything on their counterparts in assets, so ignore them.

/assets/jsconfig.json is a file that is automatically created by Hugo when running it’s pipes. It contains local path information that depends on your local workstation. Your home directory might not be in the same directory seen from root on every computer. So leave this file out of the loop. Recreating it will not take much time.

hugo.log is my preferred logfile name. If you use --log and --logFile parameters for your Hugo server and build commands, then you will have a file that keeps a log of everything your Hugo process has to tell you. Don’t add these logs to your repository. The name might change of course based on your preferences.

hugo_stats.json is created if you run Hugo with the build > writeStats configuration enabled. It will list used classes, id’s and tags and is a tool to help for instance PurgeCSS to work. Don’t put that into your repository, because it will change every time you change something in the layouts folder.

.hugo_build.lock is a so-called lockfile. Long story short: if you add new content this will keep Hugo from going insane because your new content might contain more than just one file and cause a rebuild-loop or just choke the Hugo process to death. Keep it out of your repository, it’s a “work in progress” file that has no meaning to the full project.

hugo.exe/hugo.darwin/hugo.linux are names for hugo binaries. Some people like to download the Hugo binary (program) to their project without installing it on their system. This is more or less a hack, so either don’t do it or don’t commit it to your repository ;)

I really like the gitignore-generator of Toptal.com where you can create your own customised .gitignore file by selecting all tools, frameworks, programming languages and so on that you use in a project, which is based on Githubs own gitignore repository. I even contributed (which is not too hard, hint hint, PR).

Back to top
Back Forward