diff options
| author | Aakarsh Kashyap <[email protected]> | 2026-06-20 18:57:14 +0530 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-06-20 18:57:14 +0530 |
| commit | 19df8e77977f634064aed3c0332d1b0fc56e158b (patch) | |
| tree | ac664730e758ef50f8472831fada93c6e8f7c5d7 /.gitignore | |
| parent | 02a1bdae9780c1f08818d1a5039bdfb055372723 (diff) | |
| parent | b5186a5a724649e9eb71fdfbaf3c2a84b36d7c9c (diff) | |
Merge pull request #1 from seivarya/master
[refactor]: restructure
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8a2ec94 --- /dev/null +++ b/.gitignore @@ -0,0 +1,67 @@ +# Prerequisites +*.d + +# clangd files +compile_commands.json + +# misc +.vscode/ + + +# build/ cache files +build +run_tests +.cache + +# 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 + +# debug information files +*.dwo |
