.gitignore for Nanoc

3 ignore rules for Nanoc, ready to copy into your repository.

Static site generator

The complete .gitignore for Nanoc

# Generated by LFGitignore - https://lfgitignore.com
# Created: 2026-08-04 23:56:06 UTC
# Technologies: Nanoc

### Nanoc ###
output/
tmp/nanoc/
crash.log

What these Nanoc rules actually ignore

Every pattern below, and why it belongs in your .gitignore.

Default location for output (needs to match output_dir's value found in nanoc.yaml)

Pattern What it ignores
output/ Default location for output (needs to match output_dir's value found in nanoc.yaml)

Temporary file directory

Pattern What it ignores
tmp/nanoc/ Temporary file directory

Crash Log

Pattern What it ignores
crash.log Crash Log

How to use this .gitignore for Nanoc

  1. Copy the Nanoc rules above, or download the file directly.
  2. Create a file named .gitignore at the root of your Git repository and paste the rules into it.
  3. If some of those files are already tracked, run git rm -r --cached . then commit again — Git only applies ignore rules to untracked files.
  4. Commit the .gitignore so everyone on the team shares the same rules.

Other Framework .gitignore templates

See every Framework template