Prevent GitHub from excluding the build/ directory (#786)

Add a `.gitattributes` file, [as described on the GitHub documentation](https://docs.github.com/en/search-github/searching-on-github/finding-files-on-github#customizing-excluded-files), to prevent GitHub from excluding this folder from "Go to file". In our repo, this file contains lots of build scripts, so it helps when they're easily findable.
This commit is contained in:
Mine Starks 2023-04-05 12:03:15 -07:00 коммит произвёл GitHub
Родитель 303e3afe0b
Коммит 685ba93fab
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 3 добавлений и 0 удалений

3
.gitattributes поставляемый Normal file
Просмотреть файл

@ -0,0 +1,3 @@
# Prevent GitHub from excluding the build/ directory from the file finder.
# See: https://docs.github.com/en/search-github/searching-on-github/finding-files-on-github
build/** linguist-generated=false