From 03e02868b80858344e893afa66d07ffdc7289e28 Mon Sep 17 00:00:00 2001 From: Intel A80486DX2-66 Date: Wed, 31 Jan 2024 22:24:38 +0300 Subject: [PATCH] optimize .gitignore files --- c-programming/.gitignore | 54 +++++++++++++ d-programming/.gitignore | 30 +++++++ .gitignore => python-programming/.gitignore | 88 --------------------- 3 files changed, 84 insertions(+), 88 deletions(-) create mode 100644 d-programming/.gitignore rename .gitignore => python-programming/.gitignore (80%) diff --git a/c-programming/.gitignore b/c-programming/.gitignore index 1944fd6..94e4aba 100644 --- a/c-programming/.gitignore +++ b/c-programming/.gitignore @@ -1 +1,55 @@ +# Prerequisites +*.d + +# Object files +*.o +*.ko +*.obj +*.elf + +# Linker output +*.ilk +*.map +*.exp + +# Precompiled Headers +*.gch +*.pch + +# Libraries +*.lib +*.a +*.la +*.lo + +# Shared objects (inc. Windows DLLs) +*.dll +*.so +*.so.* +*.dylib + +# Executables +*.exe +*.out +*.app +*.i*86 +*.x86_64 +*.hex + +# Debug files +*.dSYM/ +*.su +*.idb +*.pdb + +# Kernel Module Compile Results +*.mod* +*.cmd +.tmp_versions/ +modules.order +Module.symvers +Mkfile.old +dkms.conf + +# Custom *.tmp diff --git a/d-programming/.gitignore b/d-programming/.gitignore new file mode 100644 index 0000000..1cecaf4 --- /dev/null +++ b/d-programming/.gitignore @@ -0,0 +1,30 @@ +# Compiled Object files +*.o +*.obj + +# Compiled Dynamic libraries +*.so +*.dylib +*.dll + +# Compiled Static libraries +*.a +*.lib + +# Executables +*.exe + +# DUB +.dub +docs.json +__dummy.html +docs/ + +# Code coverage +*.lst + +# Swap files of editors +*.*~ + +# Build directory +build/ diff --git a/.gitignore b/python-programming/.gitignore similarity index 80% rename from .gitignore rename to python-programming/.gitignore index a10dff3..68bc17f 100644 --- a/.gitignore +++ b/python-programming/.gitignore @@ -1,59 +1,3 @@ -# ---> C -# Prerequisites -*.d -!d-programming/**.d - -# Object files -*.o -*.ko -*.obj -*.elf - -# Linker output -*.ilk -*.map -*.exp - -# Precompiled Headers -*.gch -*.pch - -# Libraries -*.lib -*.a -*.la -*.lo - -# Shared objects (inc. Windows DLLs) -*.dll -*.so -*.so.* -*.dylib - -# Executables -*.exe -*.out -*.app -*.i*86 -*.x86_64 -*.hex - -# Debug files -*.dSYM/ -*.su -*.idb -*.pdb - -# Kernel Module Compile Results -*.mod* -*.cmd -.tmp_versions/ -modules.order -Module.symvers -Mkfile.old -dkms.conf - -# ---> Python # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] @@ -214,35 +158,3 @@ cython_debug/ # and can be added to the global gitignore or merged into this file. For a more nuclear # option (not recommended) you can uncomment the following to ignore the entire idea folder. #.idea/ - -# ---> D -# Compiled Object files -*.o -*.obj - -# Compiled Dynamic libraries -*.so -*.dylib -*.dll - -# Compiled Static libraries -*.a -*.lib - -# Executables -*.exe - -# DUB -.dub -docs.json -__dummy.html -docs/ - -# Code coverage -*.lst - -# Swap files of editors -*.*~ - -# Build directory -build/