mirror of
https://git.yoctoproject.org/poky-contrib
synced 2025-05-07 23:23:32 +08:00

There is a new official bitbake plugin: https://marketplace.visualstudio.com/items?itemName=yocto-project.yocto-bitbake This plugin automatically updates the .vscode/settings.json file. Having the settings.json file in git and a plugin which modifies this file is not ideal. It can lead to anoying situations especially when working with git. For example a git stash reverts the settings which are automatically applied by the plugin. While git stashed the settings.json file the plugin immediately changes the file again and tries to run bitbake based on the newly generated settings. When git does a stash pop the restored settings.json file conflicts with the new settigns.json file which has been generated while the git stash took place. Therefore this patch removes the .vscode folder from git. Removing the settings.json leads to other issues as already described in the commit message of 5ff688fe29. But we still need another solution where the settings.json file is not in Git. Discussion is here: https://github.com/yoctoproject/vscode-bitbake/issues/95 (From OE-Core rev: f36771e155b9e0cf24a885bf3340d59036aa42c5) Signed-off-by: Adrian Freihofer <adrian.freihofer@siemens.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
40 lines
769 B
Plaintext
40 lines
769 B
Plaintext
*.pyc
|
|
*.pyo
|
|
/*.patch
|
|
/.repo/
|
|
/build*/
|
|
pyshtables.py
|
|
pstage/
|
|
scripts/oe-git-proxy-socks
|
|
sources/
|
|
meta-*/
|
|
buildtools/
|
|
!meta-skeleton
|
|
!meta-selftest
|
|
hob-image-*.bb
|
|
*.swp
|
|
*.orig
|
|
*.rej
|
|
*~
|
|
!meta-poky
|
|
!meta-yocto
|
|
!meta-yocto-bsp
|
|
!meta-yocto-imported
|
|
/documentation/*/eclipse/
|
|
/documentation/*/*.html
|
|
/documentation/*/*.pdf
|
|
/documentation/*/*.tgz
|
|
/bitbake/doc/bitbake-user-manual/bitbake-user-manual.html
|
|
/bitbake/doc/bitbake-user-manual/bitbake-user-manual.pdf
|
|
/bitbake/doc/bitbake-user-manual/bitbake-user-manual.tgz
|
|
pull-*/
|
|
bitbake/lib/toaster/contrib/tts/backlog.txt
|
|
bitbake/lib/toaster/contrib/tts/log/*
|
|
bitbake/lib/toaster/contrib/tts/.cache/*
|
|
bitbake/lib/bb/tests/runqueue-tests/bitbake-cookerdaemon.log
|
|
_toaster_clones/
|
|
downloads/
|
|
sstate-cache/
|
|
toaster.sqlite
|
|
.vscode/
|