summaryrefslogtreecommitdiffstats
path: root/.gitignore
diff options
context:
space:
mode:
authorYigit Sever2021-12-01 13:53:26 +0300
committerYigit Sever2021-12-01 13:53:26 +0300
commitc83970e459635609f7b4520f4f73db8f70c973f8 (patch)
tree5232ccc1d0e015695e7ce8e694d33985f4c76b21 /.gitignore
downloadaoc-c83970e459635609f7b4520f4f73db8f70c973f8.tar.gz
aoc-c83970e459635609f7b4520f4f73db8f70c973f8.tar.bz2
aoc-c83970e459635609f7b4520f4f73db8f70c973f8.zip
2021, day1: done
Diffstat (limited to '.gitignore')
-rw-r--r--.gitignore58
1 files changed, 58 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..b48d248
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,58 @@
1# Created by https://www.toptal.com/developers/gitignore/api/c
2# Edit at https://www.toptal.com/developers/gitignore?templates=c
3
4### C ###
5# Prerequisites
6*.d
7
8# Object files
9*.o
10*.ko
11*.obj
12*.elf
13
14# Linker output
15*.ilk
16*.map
17*.exp
18
19# Precompiled Headers
20*.gch
21*.pch
22
23# Libraries
24*.lib
25*.a
26*.la
27*.lo
28
29# Shared objects (inc. Windows DLLs)
30*.dll
31*.so
32*.so.*
33*.dylib
34
35# Executables
36*.exe
37*.out
38*.app
39*.i*86
40*.x86_64
41*.hex
42
43# Debug files
44*.dSYM/
45*.su
46*.idb
47*.pdb
48
49# Kernel Module Compile Results
50*.mod*
51*.cmd
52.tmp_versions/
53modules.order
54Module.symvers
55Mkfile.old
56dkms.conf
57
58# End of https://www.toptal.com/developers/gitignore/api/c