Skip to content

Commit 60f4597

Browse files
committed
Update gitignore
1 parent bfd9d98 commit 60f4597

File tree

1 file changed

+85
-30
lines changed

1 file changed

+85
-30
lines changed

.gitignore

+85-30
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,29 @@
1-
# Hidden files
2-
.*
3-
!.git*
4-
5-
# Backup files
61
*~
7-
\#*\#
2+
3+
## From: https://github.com/github/gitignore/blob/master/C.gitignore
4+
# Prerequisites
5+
*.d
86

97
# Object files
108
*.o
119
*.ko
10+
*.obj
11+
*.elf
12+
13+
# Linker output
14+
*.ilk
15+
*.map
16+
*.exp
17+
18+
# Precompiled Headers
19+
*.gch
20+
*.pch
1221

1322
# Libraries
1423
*.lib
1524
*.a
25+
*.la
26+
*.lo
1627

1728
# Shared objects (inc. Windows DLLs)
1829
*.dll
@@ -24,42 +35,86 @@
2435
*.exe
2536
*.out
2637
*.app
27-
#src/redshift*
38+
*.i*86
39+
*.x86_64
40+
*.hex
41+
42+
# Debug files
43+
*.dSYM/
44+
*.su
45+
*.idb
46+
*.pdb
47+
48+
# Kernel Module Compile Results
49+
*.mod*
50+
*.cmd
51+
.tmp_versions/
52+
modules.order
53+
Module.symvers
54+
Mkfile.old
55+
dkms.conf
56+
57+
## From: https://github.com/github/gitignore/blob/master/Autotools.gitignore
58+
# http://www.gnu.org/software/automake
2859

29-
# autotools
30-
/autom4te.cache
3160
Makefile.in
32-
Makefile
33-
stamp-h1
34-
/config.*
35-
/ABOUT-NLS
61+
/ar-lib
62+
/mdate-sh
63+
/py-compile
64+
/test-driver
65+
/ylwrap
66+
67+
# http://www.gnu.org/software/autoconf
68+
69+
autom4te.cache
70+
/autoscan.log
71+
/autoscan-*.log
3672
/aclocal.m4
73+
/compile
74+
/config.guess
75+
/config.h.in
76+
/config.log
77+
/config.status
78+
/config.sub
3779
/configure
80+
/configure.scan
3881
/depcomp
3982
/install-sh
4083
/missing
41-
/py-compile
42-
/compile
43-
*.deps/
44-
/m4/
45-
libtool
46-
ltmain.sh
84+
/stamp-h1
4785

86+
# https://www.gnu.org/software/libtool/
87+
88+
/ltmain.sh
89+
90+
# http://www.gnu.org/software/texinfo
91+
92+
/texinfo.tex
93+
94+
# http://www.gnu.org/software/m4/
95+
96+
m4/libtool.m4
97+
m4/ltoptions.m4
98+
m4/ltsugar.m4
99+
m4/ltversion.m4
100+
m4/lt~obsolete.m4
101+
102+
## Redshift specific:
48103
# generated files
49-
src/redshift-gtk/defs.py
50-
src/redshift-gtk/redshift-gtk
51-
contrib/redshift.spec
52-
src/redshift
53-
src/redshift-gtk/__pycache__/
54-
/data/systemd/redshift.service
55-
/data/systemd/redshift-gtk.service
104+
/ABOUT-NLS
105+
/config.rpath
106+
/contrib/redshift.spec
107+
/data/apparmor/usr.bin.redshift
56108
/data/appdata/redshift-gtk.appdata.xml
57109
/data/applications/redshift.desktop
58110
/data/applications/redshift-gtk.desktop
59-
/data/apparmor/usr.bin.redshift
60-
61-
*.su
62-
*.gch
111+
/data/systemd/redshift.service
112+
/data/systemd/redshift-gtk.service
113+
/m4
114+
/src/redshift
115+
/src/redshift-gtk/defs.py
116+
/src/redshift-gtk/redshift-gtk
117+
/src/redshift-gtk/__pycache__/
63118

64119
# gettext
65120
/po/POTFILES

0 commit comments

Comments
 (0)