-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
executable file
·53 lines (41 loc) · 1.23 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
#Files specified here don't get included when you push a git commit. This makes it very handy to avoid
# cluttering up things, and avoiding merge complaints
#If you want to make sure a file is included, use the negated form,
# !filename.ext
# which means "don't ignore this file".
#These are compiled files, we don't need these
*.class
*.suite
#manifest files
*.MF
# Package Files #
*.jar
*.war
*.ear
#These are autogenerated files, so we don't want to track them.
#RobotMap.java
#OI.java
#Robot.java
#nevermind, we do. :(
#This stuff is all after compilation. Don't need
build/**
**/build/**
#Appears to have project specific configuration, so we'd want this to be attached to the project
# nbproject/project.xml
#these contain system-dependent configuration including usernames.
# We don't want to fiddle with this when other machines pull our code.
nbproject/private/private.xml
nbproject/private/*
#Not sure what these do, but I want them noted.
# /build.properties
# /build.properties.bak
# /build.xml
# After updating this, you'll have to "untrack" files that you don't need.
# The following commands should help with this.
# git update-index --assume-unchanged.
# git rm --cached
/BunnyBot2013/build/
*.suite
*.mf
private.xml
project.xml