Mercurial
comparison .hgignore @ 10:ad69c414a881
[Misc] Update hgignore to properly ignore output folders.
| author | June Park <parkjune1995@gmail.com> |
|---|---|
| date | Tue, 30 Sep 2025 03:56:39 -0700 |
| parents | 98f96b8032e5 |
| children | 2b9e75756825 |
comparison
equal
deleted
inserted
replaced
| 9:51255c753086 | 10:ad69c414a881 |
|---|---|
| 1 syntax: glob | |
| 2 | |
| 3 # 1) Bazel’s output base directories (e.g. bazel-<workspace-hash>/) | |
| 1 bazel-*/ | 4 bazel-*/ |
| 5 | |
| 6 # 2) Runfiles trees (created beside binaries) | |
| 7 *.runfiles/ | |
| 8 | |
| 9 # 3) Runfile manifest files | |
| 10 *.runfiles_manifest | |
| 11 | |
| 12 # 4) Test log directories | |
| 13 bazel-*/testlogs/ | |
| 14 | |
| 15 # 5) External-dependency symlinks | |
| 16 bazel-*/external/ | |
| 17 | |
| 18 # 6) Local Bazel cache (if you ever put it under the repo) | |
| 19 .bazelcache/ | |
| 20 |