blob: 597f7ceb7bf787de0c7e7bbc63fc89af20ba25fe (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#Ignore all
*
#Unignore all with extensions
!*.*
# Unignore all makefiles named Makefile or makefile
!Makefile
!makefile
#Unignore all dirs
!*/
#Ignore swp
*.swp
#Ignore res
res.txt
err.txt
push.sh
test*
!test.sh
*.o
#Ignore dir data/vsop87
data/vsop87/*
data/vsop87
|