From faadde7695677b7e6f96a10f4e25a03cda9c1482 Mon Sep 17 00:00:00 2001 From: Manuel Vergara Date: Tue, 19 Mar 2024 14:41:12 +0100 Subject: [PATCH] Update .gitignore --- .gitignore | 79 +++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 78 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 360ed7c..d5a2290 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,79 @@ +# Zona privada con ejercicios y pruebas +# + *.uoc -*.uoc/* \ No newline at end of file +*.uoc/* + + +# Visual Studio Code +# +.vscode/* +.vscode/settings.json +.vscode/tasks.json +.vscode/launch.json +.vscode/extensions.json +.vscode/*.code-snippets + + +# C +# + +# Local History for Visual Studio Code +.history/ + +# Built Visual Studio Code Extensions +*.vsix + + +# 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 \ No newline at end of file