aboutsummaryrefslogtreecommitdiff
path: root/gitignore
blob: 6060c45e0e6bdf5349fbd45d9fd3461a9aaf9a95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Ignore original and rejected files in general
*.orig
*.rej

# Ignore patches in top level directory (common place where I generate them)
/*.patch

# Ignore backup files in general
*~

# C development
.gdbinit
.ccls-cache/
compile_commands.json

# Common python environment directory
/env