diff options
author | Cara Salter <cara@devcara.com> | 2022-01-20 23:47:53 -0500 |
---|---|---|
committer | Cara Salter <cara@devcara.com> | 2022-01-20 23:47:53 -0500 |
commit | c2352ee043546b518f69c615a1ece778e942e650 (patch) | |
tree | 6efe18199f0fe2810c879c9251db2897a3244604 /.gitignore | |
download | cmud-c2352ee043546b518f69c615a1ece778e942e650.tar.gz cmud-c2352ee043546b518f69c615a1ece778e942e650.zip |
initial commit
yay start of a state machine and also learning sockets
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 111 |
1 files changed, 111 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a426513 --- /dev/null +++ b/.gitignore @@ -0,0 +1,111 @@ + +# Created by https://www.toptal.com/developers/gitignore/api/c,emacs +# Edit at https://www.toptal.com/developers/gitignore?templates=c,emacs + +### C ### +# 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 + +### Emacs ### +# -*- mode: gitignore; -*- +*~ +\#*\# +/.emacs.desktop +/.emacs.desktop.lock +*.elc +auto-save-list +tramp +.\#* + +# Org-mode +.org-id-locations +*_archive + +# flymake-mode +*_flymake.* + +# eshell files +/eshell/history +/eshell/lastdir + +# elpa packages +/elpa/ + +# reftex files +*.rel + +# AUCTeX auto folder +/auto/ + +# cask packages +.cask/ +dist/ + +# Flycheck +flycheck_*.el + +# server auth directory +/server/ + +# projectiles files +.projectile + +# directory configuration +.dir-locals.el + +# network security +/network-security.data + + +# End of https://www.toptal.com/developers/gitignore/api/c,emacs +cmud* |