From 3bb9cda9ea23fa99460e8d1517b37e9a985967af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mert=20G=C3=B6r?= Date: Wed, 11 Sep 2024 10:06:12 +0300 Subject: [PATCH] gitignore update GNU Emacs and C++ --- .gitignore | 45 +++++++++++++++++++++++++++++++++------------ 1 file changed, 33 insertions(+), 12 deletions(-) diff --git a/.gitignore b/.gitignore index de896d2..664720f 100644 --- a/.gitignore +++ b/.gitignore @@ -54,20 +54,41 @@ flycheck_*.el # End of https://www.toptal.com/developers/gitignore/api/emacs -# Created by https://www.toptal.com/developers/gitignore/api/elisp -# Edit at https://www.toptal.com/developers/gitignore?templates=elisp +# Created by https://www.toptal.com/developers/gitignore/api/c++ +# Edit at https://www.toptal.com/developers/gitignore?templates=c++ -### Elisp ### -# Compiled -*.elc +### C++ ### +# Prerequisites +*.d -# Packaging -.cask +# Compiled Object files +*.slo +*.lo +*.o +*.obj -# Backup files -*~ +# Precompiled Headers +*.gch +*.pch -# Undo-tree save-files -*.~undo-tree +# Compiled Dynamic libraries +*.so +*.dylib +*.dll -# End of https://www.toptal.com/developers/gitignore/api/elisp +# Fortran module files +*.mod +*.smod + +# Compiled Static libraries +*.lai +*.la +*.a +*.lib + +# Executables +*.exe +*.out +*.app + +# End of https://www.toptal.com/developers/gitignore/api/c++