forked from FlamingMonkeys/RobotCode2016
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
40 lines (34 loc) · 892 Bytes
/
.gitignore
File metadata and controls
40 lines (34 loc) · 892 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
# Git will ignore all files matching these patterns.
# If no path is given, the pattern will be applied to all files.
# Ignore all Eclipse-specific files except for the .project file
.metadata
.settings
.recommenders
# Ignore all FRC-specific files generated by the build ...
/j2meclasses
/suite
/bin
/image.suite
/image.sym
/build
/dist
build
*/sysProps.xml
# We are including the 'sunspotfrcsdk' files in our repo.
# If they were managed in a better way (e.g., Maven) then we wouldn't
# have to store them locally. But this is the easiest way to ensure
# the SDK is easily accessible and that everyone is using the same SDK.
#
# Always include everything in the SDK ...
!/sunspotfrcsdk
# Except the JavaDoc ...
sunspotfrcsdk/doc
# Definitely include these ...
!/resources
!build.xml
!build.properties
# Ignore the files compiled/built from Java source ...
*.class
*.jar
*.war
*.ear