The install/copy-binaries script rm -rf's and re-copies the installed extension's bin, debugAdapters, and LLVM folders. A few files under bin are checked into the repo (bin/cpp.hint and bin/messages/**/messages.json); the copy overwrote them with the installed extension's versions (differing line endings and/or content), leaving spurious local modifications that had to be reverted by hand. Restore any tracked files the copy changed so only the untracked binaries remain, and gitignore the generated bin/binaryVersion.json marker.
46 lines
678 B
Plaintext
46 lines
678 B
Plaintext
# ignore dependency packages
|
|
node_modules
|
|
|
|
# ignore compiled typescript
|
|
out
|
|
dist
|
|
|
|
# ignore downloaded extension files and folders
|
|
server
|
|
debugAdapters
|
|
LLVM
|
|
bin/assert_dialog.sh
|
|
bin/binaryVersion.json
|
|
bin/cpptools*
|
|
bin/edge_cli
|
|
bin/isense_driver
|
|
bin/libc.so
|
|
bin/LICENSE.txt
|
|
bin/scout_driver
|
|
bin/unittests
|
|
bin/vcpkgsrvtest
|
|
bin/*.dll
|
|
bin/.vs
|
|
|
|
# ignore lock files
|
|
install.lock
|
|
|
|
# ignore generated packages
|
|
*.vsix
|
|
|
|
# ignore vscode test
|
|
.vscode-test/
|
|
|
|
# ignore generated localization file
|
|
**/nls.*.json
|
|
**/*.nls.*.json
|
|
|
|
# ignore generate native header
|
|
localized_string_ids.h
|
|
|
|
# ignore generate files. It will be generated when building
|
|
src/nativeStrings.ts
|
|
|
|
vscode*.d.ts
|
|
.scripts/_*
|