Add /*build*/ to .gitignore

A common pattern is to build the source artifacts within a *build* dir.

For example, the wiki instructions for [building `wireshark` on `macOS` specify to
create a `./build`
directory](https://gitlab.com/wireshark/wireshark/-/wikis/BuildingAndInstalling#macos):
```
mkdir build && cd build && cmake ../ && make
```

So this commit adds this directory to `.gitignore` to prevent
accidentally committing build artifacts.

The specific format `/*build*/` protects against the following:
1. The leading slash makes sure only top-level directories that match
this pattern are ignored.
2. The trailing slash makes sure that only directories (and not files)
are ignored.
3. The wildcards catch all the various variations on `build` folder name
that are used...
This commit is contained in:
Jeff Widman 2020-09-20 22:59:10 -07:00 committed by Peter Wu
parent 08ab0e5d1f
commit 330fd5733c
1 changed files with 1 additions and 1 deletions

2
.gitignore vendored
View File

@ -57,7 +57,7 @@ wireshark-tap-register.c
# CMake #
##################
cmake-build-*/
/*build*/
CMakeCache.txt
CMakeFiles
CMakeLists.txt.user*