-
Notifications
You must be signed in to change notification settings - Fork 163
/
.gitignore
54 lines (41 loc) · 980 Bytes
/
.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
# lkk 2011
# git configuration: files to ignore for all time in all clones of this repository
# You can also make this user specific:
# Copy this file to ~/.gitignore
# then: git config --global core.excludesfile ~/.gitignore
# OR edit the file pointed to by the core.excludesfile variable in ~/.gitconfig
# Ignore editor backup files
*~
# Ignore Python byte compiled files
*.pyc
# Ignore logs
*.log
# Ignore object files
*.o
# Ignore
*.Po
# Ignore eclipse project artifacts
.project
.cproject
.settings
.autotools
# http://www.gnu.org/software/automake
# Track all Makefile.in because users won't have automake to generate them
# http://www.gnu.org/software/autoconf
# Don't track autoconf generated temporary files.
# Users don't need them, developers must generate their own
/autom4te.cache
/aclocal.m4
/compile
/config.h
/config.h.in
/config.status
/configure
/depcomp
/install-sh
/missing
/po/*.gmo
Makefile.in
Makefile
# ignore separate build directory
/build