diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 18:24:20 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 18:24:20 +0000 |
commit | 483eb2f56657e8e7f419ab1a4fab8dce9ade8609 (patch) | |
tree | e5d88d25d870d5dedacb6bbdbe2a966086a0a5cf /.gitignore | |
parent | Initial commit. (diff) | |
download | ceph-483eb2f56657e8e7f419ab1a4fab8dce9ade8609.tar.xz ceph-483eb2f56657e8e7f419ab1a4fab8dce9ade8609.zip |
Adding upstream version 14.2.21.upstream/14.2.21upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..86375e1c --- /dev/null +++ b/.gitignore @@ -0,0 +1,74 @@ +*~ +*.co +*.diff +*.deb +*.tar.gz +*.tar.bz2 +*.dsc +*.changes +*.gcda +*.gcov +*.gcno +*.generated.dot +*.swp +*.swo +*.tmp +*.orig +*.patch +!debian/patches/*.patch +*.rej +*.rpm +*.pyc +ceph.spec +cscope.* +gmon.out +py-compile +tags +__pycache__ + +# Files generated by crashed programs +vgcore.* +core +*.core + +# Files generated by running tests +*.log +/src/td + +# alpine abuild things +.abuild/ +alpine/APKBUILD + +# specific local dir files +/build-doc + +# where is this from? +web/*.html + +# dir from coverity tools +cov-int/ + +# gtags(1) generated files +GPATH +GRTAGS +GSYMS +GTAGS +/examples/librados/.libs/ +/examples/librados/librados_hello_world +/examples/librados/librados_hello_world_c + +# common cmake build dir +/build +/build.* + +# editor backup files etc. +\#*\# + +.idea + +.vscode + +# dashboard +/src/pybind/mgr/dashboard/frontend/src/environments/environment.ts +/src/pybind/mgr/dashboard/frontend/src/environments/environment.prod.ts +/src/pybind/mgr/dashboard/frontend/src/locale/messages.xlf |