Skip to content

Create .gitignore

A .gitignore is useful for telling Git what it shouldn't look for changes in. In this case, we need to add meson's default build directory, _build, to the .gitignore file. Prevents the user from accidentally committing files from the build directory.

Merge request reports