gitignore cleanup (#1672)

This commit is contained in:
Cœur 2024-06-24 15:58:46 +08:00 committed by GitHub
parent e0d53cbcd5
commit 78d29804db
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

124
.gitignore vendored
View File

@ -6,9 +6,6 @@
*~ *~
*.swp *.swp
# C stuff
*.o
# Windows stuff # Windows stuff
*.obj *.obj
*.exe *.exe
@ -26,17 +23,6 @@
# gdb stuff # gdb stuff
.gdb_history .gdb_history
# Autotools stuff
.deps
.dirstamp
Makefile
Makefile.in
# Libtool stuff
.libs
*.lo
*.la
# ctags stuff # ctags stuff
TAGS TAGS
tags tags
@ -45,93 +31,105 @@ tags
cscope* cscope*
# Stuff made by our makefiles # Stuff made by our makefiles
*.pc
*.log
*.trs *.trs
## The initial / makes these files only get ignored in particular directories.
/autom4te.cache
# configure in progress # configure in progress
*.err
*.tmp
/.cyg* /.cyg*
/confdefs.* /confdefs.*
/conftest
/conftest.* /conftest.*
# Libtool adds these, at least sometimes # files generated by autotools (`./autogen.sh`)
## The initial / makes these files only get ignored in particular directories.
/aclocal.m4
/autom4te.cache
/build-aux/
/configure
/config.h.in
/m4/libtool.m4 /m4/libtool.m4
/m4/ltoptions.m4 /m4/ltoptions.m4
/m4/ltsugar.m4 /m4/ltsugar.m4
/m4/ltversion.m4 /m4/ltversion.m4
/m4/lt~obsolete.m4 /m4/lt~obsolete.m4
/Makefile.in
/aclocal.m4 # files generated by configure (`mkdir build; cd build && ../configure`)
compile *.log
config.cache *.pc
config.guess .deps/
config.h
config.log config.log
config.status config.status
config.sub evconfig-private.h
configure
configure.lineno
depcomp
config.h
config.h.in
install-sh
libtool libtool
ltmain.sh Makefile
missing
stamp-h1 stamp-h1
stamp-h2 stamp-h2
# other generated config files (which command?)
config.cache
config.guess
config.sub
# files generated by doxygen # files generated by doxygen
doxygen doxygen
CMakeDoxyfile.in CMakeDoxyfile.in
CMakeDoxygenDefaults.cmake CMakeDoxygenDefaults.cmake
Doxyfile.doxygen Doxyfile.doxygen
# sample binaries # files generated by make (`mkdir build; cd build && ../configure && make`)
.dirstamp
.libs/
*.la
*.lo
*.o
event-config.h
## make generated files under /sample
becat
dns-example dns-example
event-read-fifo event-read-fifo
event-test
hello-world hello-world
http-server
http-connect http-connect
le-proxy http-server
https-client https-client
https-client-mbedtls https-client-mbedtls
ssl-client-mbedtls le-proxy
signal-test signal-test
ssl-client-mbedtls
time-test time-test
event-test
watch-timing watch-timing
becat
ws-chat-server ws-chat-server
# test binaries ## make generated files under /test
test-driver
bench bench
bench_cascade bench_cascade
bench_http bench_http
bench_httpclient bench_httpclient
regress regress
regress.gen.c
regress.gen.h
rpcgen-attempted rpcgen-attempted
test-changelist
test-closed
test-driver
test-dumpevents test-dumpevents
test-eof test-eof
test-closed test-fdleak
test-init test-init
test-kq-collision
test-ratelim test-ratelim
test-script.sh test-script.sh
test-time test-time
test-weof test-weof
test-changelist
test-fdleak
test-kq-collision
event-config.h # files generated by event_rpcgen.py (`python3 event_rpcgen.py test/regress.rpc`)
evconfig-private.h regress.gen.c
regress.gen.h
# Files generated by cmake # files generated by cmake (`cmake -B build && cmake --build build`)
/build/
CMakeCache.txt CMakeCache.txt
CMakeFiles/ CMakeFiles/
CTestTestfile.cmake CTestTestfile.cmake
@ -140,30 +138,39 @@ DartConfiguration.tcl
LibeventConfig.cmake LibeventConfig.cmake
LibeventConfigVersion.cmake LibeventConfigVersion.cmake
LibeventTargets*.cmake LibeventTargets*.cmake
Uninstall.cmake
bin/ bin/
cmake_install.cmake cmake_install.cmake
Uninstall.cmake
compile_commands.json compile_commands.json
event.dir
event_core.dir
event_extra.dir
install_manifest.txt
lib/ lib/
tmp/ tmp/
verify_tests.sh verify_tests.sh
verify_tests.bat verify_tests.bat
event.dir
event_core.dir
event_extra.dir
*.vcxproj *.vcxproj
*.sln *.sln
*.filters *.filters
install_manifest.txt
test-export/build
# ninja # files generated by Xcode (`cmake -B build -G Xcode && cmake --build build`)
*.resp
*.d
*.dia
Debug/
Release/
XCBuildData/
CMakeScripts/
libevent.xcodeproj/
# files generated by Ninja (`cmake -B build -G Ninja && cmake --build build`)
build.ninja build.ninja
rules.ninja rules.ninja
.ninja_deps .ninja_deps
.ninja_log .ninja_log
# make dist # make dist (`mkdir build; cd build && ../configure && make distcheck`)
/COPYING /COPYING
/INSTALL /INSTALL
*.tar.gz *.tar.gz
@ -178,5 +185,6 @@ rules.ninja
# VS/VSCode # VS/VSCode
.vs/ .vs/
.vscode/ .vscode/
# IntelliJ/Clion # IntelliJ/Clion
.idea/ .idea/