| Message ID | 20260108-ignore-bitbake-builds-v2-1-a70cdbbb6d6c@pbarker.dev |
|---|---|
| State | Accepted, archived |
| Commit | 8177479e135bcdd7f68b742f6e2949cb31c4c986 |
| Headers | show |
| Series | [v2] gitignore: Ignore bitbake-builds directory | expand |
Hi Paul, On 1/8/26 1:48 PM, Paul Barker via lists.openembedded.org wrote: > Running `./bin/bitbake-setup init ...` in the bitbake directory with the > default bitbake-setup configuration creates a bitbake-builds directory. > Add this to .gitignore with a wildcard so that any such directory is not > tracked. > Reviewed-by: Quentin Schulz <quentin.schulz@cherry.de> Thanks! Quentin
diff --git a/.gitignore b/.gitignore index fbf9eb2031c8..a6a256b2c6b9 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,7 @@ *~ pyshtables.py /doc/manual/html/ +**/bitbake-builds/ /build/ /bin/bitbakec *.swp
Running `./bin/bitbake-setup init ...` in the bitbake directory with the default bitbake-setup configuration creates a bitbake-builds directory. Add this to .gitignore with a wildcard so that any such directory is not tracked. Signed-off-by: Paul Barker <paul@pbarker.dev> --- Changes in v2: - Use a wildcard as suggested by Alex. --- .gitignore | 1 + 1 file changed, 1 insertion(+) --- base-commit: 6e511d035a3d1e4129dab7b0dfbf216bd8e99b47 change-id: 20260108-ignore-bitbake-builds-dc8108e7b05b Best regards,