Skip to content

Commit

Permalink
improved .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
qkrorlqr committed Jan 4, 2024
1 parent f673cf4 commit f1010ff
Showing 1 changed file with 45 additions and 11 deletions.
56 changes: 45 additions & 11 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,25 +1,28 @@
.git
./cloud/blockstore/apps/client/blockstore-client
./cloud/blockstore/apps/disk_agent/diskagentd
./cloud/blockstore/apps/server/nbsd
./cloud/blockstore/tools/nbd/blockstore-nbd

# nbs binaries
/cloud/blockstore/apps/client/blockstore-client
/cloud/blockstore/apps/disk_agent/diskagentd
/cloud/blockstore/apps/server/nbsd
/cloud/blockstore/tools/nbd/blockstore-nbd

# filestore binaries
/cloud/filestore/apps/client/filestore-client
/cloud/filestore/apps/server/filestore-server
/cloud/filestore/apps/vhost/filestore-vhost

# build system generated files
cmake-build-debug-system/*
cmake-build-debug/*
cmake.*
./build/
./.idea/*
./test-results/

*.cmake
.conan
__pycache__
*.py[cod]
*$py.class
*_pb2.py
*_pb2_grpc.py
*_pb2.pyi
*.pb.cc
*.pb.h

# MacOS specific
.DS_Store

Expand Down Expand Up @@ -63,3 +66,34 @@ compile_commands.json
*.exe
*.out
*.app

# Generated proto files
*.pb.h
*.pb.cc
*.pb.go
*.pb.h_serialized.cpp
*_pb2.py
*_pb2_grpc.py
*_pb2.pyi

# Ya make test files
test-results

# Test binaries and generated dirs
*-ut
**/tests/tests

# Autogenerated util, library and contrib files
/util/all_*.cpp
/util/charset/all_charset.cpp
/contrib/tools/ragel6/all_*.cpp
/contrib/go/_std_1.21/src/net/_cgo_export.h
/contrib/go/_std_1.21/src/runtime/cgo/_cgo_export.h
/contrib/python/protobuf/py3/google.protobuf.internal._api_implementation.reg3.cpp
/contrib/python/protobuf/py3/google.protobuf.pyext._message.reg3.cpp
/contrib/tools/python3/src/Modules/_sqlite/_sqlite3.reg3.cpp
/library/python/runtime_py3/__res.pyx.cpp
/library/python/runtime_py3/__res.reg3.cpp
/library/python/runtime_py3/sitecustomize.pyx.cpp
/library/python/runtime_py3/sitecustomize.reg3.cpp
/library/python/symbols/module/library.python.symbols.module.syms.reg3.cpp

0 comments on commit f1010ff

Please sign in to comment.