-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy path.gitignore
More file actions
46 lines (45 loc) · 1014 Bytes
/
.gitignore
File metadata and controls
46 lines (45 loc) · 1014 Bytes
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
.cache-main
.cache-tests
target
target/
lib_managed
src_managed
resource_managed
.history
.cache
.idea
.idea_modules
.bsp/
errors
project/errors
.~*#
out
.scala_dependencies
# ignore all emacs backup files
*~
#
# For ECLIPSE
#
# This is a bit odd. These files for the patterns below
# don't exist in the file system
# but eclipse has its own kind of internal resource links to them
# and when EGit (eclipse's git interface) looks for files to say, commit
# it constructs paths using its own resource links, and then
# uses .gitignore to week out the ones it isn't to use.
# so this helps with using git from eclipse.
#
# The eclipse-projects directories are supposed to just be
# eclipse project .project and .classpath files as far as
# git is concerned. However, they will have src folders
# if they are split into main and unittest projects.
eclipse-projects/*/src/main
eclipse-projects/*/src/test
eclipse-projects/*/bin/
#
# FOR EMACS ENSIME
#
.ensime_cache
# these are autosave emacs files
\#*#
.\#*
.\#.*