aboutsummaryrefslogtreecommitdiff
path: root/gitignore
blob: 6d6077e157865423c5405f75a4b9c5057ec5e9ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# 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
*~

# Ignore default nix output in general
result*

# C development
build
.gdbinit
.cache/
vgcore.*

# Python development
__pycache__/
*.py[cod]
/env
*.egg-info
.coverage