forked from fofix/fofix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
96 lines (88 loc) · 1.75 KB
/
.gitignore
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<<<<<<< HEAD
=======
# Always use leading / for absolute paths; without it, git may ignore things
# in other dirs. See for a better analysis:
# https://stackoverflow.com/questions/24139478/when-to-use-leading-slash-in-gitignore
# Ignore these files in every dir
>>>>>>> 7730d1503c66562b901f62b33a5bd46c3d5e5c34
*.py[cod]
*.so
*.exe
*.exe.log
*.dll
*.orig
*.mo
*.pot
.project
.pydevproject
.settings
<<<<<<< HEAD
fofix/html
doc/epydoc
fofix/*.ini
fofix/*.log
fofix/*.idb
fofix/core/cmgl/cmgl.c
fofix/core/MixStream/_MixStream.c
fofix/core/VideoPlayer/_VideoPlayer.c
fofix/core/pypitch/_pypitch.cpp
build
gstreamer/*
data/library.zip
data/users/players/*
!data/users/players/default.png
!data/users/players/default.ini
data/users/controllers/*
!data/users/controllers/default[dgm].ini
data/songs/
data/themes/*
!data/themes/MegaLight
!data/themes/MegaLight GH3
!data/themes/MegaLight V4
!data/themes/Uberlight
win32/*
!win32/*.sh
!win32/*.py
!win32/*.patch
!win32/README.deppack.stub
!win32/*.ico
=======
.DS_Store
# Ignore these general development things
/bin/
/build/
/dist/
/doc/build/
/include/
/gstreamer/
/lib/
/lib64/
/local/
pyvenv.cfg
# Ignore these source code items
/fofix/html
/fofix/*.ini
/fofix/*.log
/fofix/*.idb
/fofix/core/MixStream/_MixStream.c
/fofix/core/VideoPlayer/_VideoPlayer.c
# Ignore these app resources
/data/library.zip
/data/users/players/*
!/data/users/players/default.png
!/data/users/players/default.ini
/data/users/controllers/*
!/data/users/controllers/default[dgm].ini
/data/songs/
/data/themes/*
!/data/themes/MegaLight
!/data/themes/MegaLight GH3
!/data/themes/MegaLight V4
!/data/themes/Uberlight
/win32/
!/win32/*.sh
!/win32/*.py
!/win32/*.patch
!/win32/README.deppack.stub
!/win32/*.ico
>>>>>>> 7730d1503c66562b901f62b33a5bd46c3d5e5c34