Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 332 Bytes

ignore.md

File metadata and controls

15 lines (10 loc) · 332 Bytes

Ignoring files & folders

GitBook will read the .gitignore, .bookignore and .ignore files to get a list of files and folders to skip.

The format inside those files, follows the same convention as .gitignore:

# This is a comment

# Ignore the file test.md
test.md

# Ignore everything in the directory "bin"
bin/*