remove bin from tracking; add gitignore
authorKevin Zhang <kevin.zhang.13499@gmail.com>
Sun, 15 Nov 2015 00:33:04 +0000 (16:33 -0800)
committerKevin Zhang <kevin.zhang.13499@gmail.com>
Sun, 15 Nov 2015 00:33:04 +0000 (16:33 -0800)
16 files changed:
.classpath
.gitignore [new file with mode: 0644]
bin/org/usfirst/frc3501/RiceCatRobot/OI.class [deleted file]
bin/org/usfirst/frc3501/RiceCatRobot/Robot.class [deleted file]
bin/org/usfirst/frc3501/RiceCatRobot/RobotMap$Direction.class [deleted file]
bin/org/usfirst/frc3501/RiceCatRobot/RobotMap.class [deleted file]
bin/org/usfirst/frc3501/RiceCatRobot/commands/CloseClaw.class [deleted file]
bin/org/usfirst/frc3501/RiceCatRobot/commands/DriveFor.class [deleted file]
bin/org/usfirst/frc3501/RiceCatRobot/commands/MoveArmFor.class [deleted file]
bin/org/usfirst/frc3501/RiceCatRobot/commands/OpenClaw.class [deleted file]
bin/org/usfirst/frc3501/RiceCatRobot/commands/ToggleClaw.class [deleted file]
bin/org/usfirst/frc3501/RiceCatRobot/commands/ToggleCompressor.class [deleted file]
bin/org/usfirst/frc3501/RiceCatRobot/commands/TurnFor.class [deleted file]
bin/org/usfirst/frc3501/RiceCatRobot/subsystems/Arm.class [deleted file]
bin/org/usfirst/frc3501/RiceCatRobot/subsystems/Claw.class [deleted file]
bin/org/usfirst/frc3501/RiceCatRobot/subsystems/DriveTrain.class [deleted file]

index daf6ebbf77221eac4688369b5682a716137c931a..10a431fe1b4170627dbc4d39d6db9b5967a18f23 100644 (file)
@@ -1,7 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
 <classpath>
-  <classpathentry kind="src" path="src"/>
-  <classpathentry kind="var" path="wpilib" sourcepath="wpilib.sources"/>
-  <classpathentry kind="var" path="networktables" sourcepath="networktables.sources"/>
-  <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
-  <classpathentry kind="output" path="bin"/>
+       <classpathentry kind="src" path="src"/>
+       <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
+       <classpathentry kind="lib" path="/home/cindy/wpilib/java/current/lib/NetworkTables.jar"/>
+       <classpathentry kind="lib" path="/home/cindy/wpilib/java/current/lib/WPILib.jar"/>
+       <classpathentry kind="output" path="bin"/>
 </classpath>
diff --git a/.gitignore b/.gitignore
new file mode 100644 (file)
index 0000000..227a010
--- /dev/null
@@ -0,0 +1,42 @@
+*.pydevproject
+.metadata
+.gradle
+bin/
+tmp/
+*.tmp
+*.bak
+*.swp
+*~.nib
+local.properties
+.settings/
+.loadpath
+
+# Eclipse Core
+.project
+
+# External tool builders
+.externalToolBuilders/
+
+# Locally stored "Eclipse launch configurations"
+*.launch
+
+# CDT-specific
+.cproject
+
+# JDT-specific (Eclipse Java Development Tools)
+.classpath
+
+# Java annotation processor (APT)
+.factorypath
+
+# PDT-specific
+.buildpath
+
+# sbteclipse plugin
+.target
+
+# TeXlipse plugin
+.texlipse
+
+# STS (Spring Tool Suite)
+.springBeans
\ No newline at end of file
diff --git a/bin/org/usfirst/frc3501/RiceCatRobot/OI.class b/bin/org/usfirst/frc3501/RiceCatRobot/OI.class
deleted file mode 100644 (file)
index 1ef82fc..0000000
Binary files a/bin/org/usfirst/frc3501/RiceCatRobot/OI.class and /dev/null differ
diff --git a/bin/org/usfirst/frc3501/RiceCatRobot/Robot.class b/bin/org/usfirst/frc3501/RiceCatRobot/Robot.class
deleted file mode 100644 (file)
index 1de0462..0000000
Binary files a/bin/org/usfirst/frc3501/RiceCatRobot/Robot.class and /dev/null differ
diff --git a/bin/org/usfirst/frc3501/RiceCatRobot/RobotMap$Direction.class b/bin/org/usfirst/frc3501/RiceCatRobot/RobotMap$Direction.class
deleted file mode 100644 (file)
index 5d821e1..0000000
Binary files a/bin/org/usfirst/frc3501/RiceCatRobot/RobotMap$Direction.class and /dev/null differ
diff --git a/bin/org/usfirst/frc3501/RiceCatRobot/RobotMap.class b/bin/org/usfirst/frc3501/RiceCatRobot/RobotMap.class
deleted file mode 100644 (file)
index 7668172..0000000
Binary files a/bin/org/usfirst/frc3501/RiceCatRobot/RobotMap.class and /dev/null differ
diff --git a/bin/org/usfirst/frc3501/RiceCatRobot/commands/CloseClaw.class b/bin/org/usfirst/frc3501/RiceCatRobot/commands/CloseClaw.class
deleted file mode 100644 (file)
index b95fe0c..0000000
Binary files a/bin/org/usfirst/frc3501/RiceCatRobot/commands/CloseClaw.class and /dev/null differ
diff --git a/bin/org/usfirst/frc3501/RiceCatRobot/commands/DriveFor.class b/bin/org/usfirst/frc3501/RiceCatRobot/commands/DriveFor.class
deleted file mode 100644 (file)
index c4bf05d..0000000
Binary files a/bin/org/usfirst/frc3501/RiceCatRobot/commands/DriveFor.class and /dev/null differ
diff --git a/bin/org/usfirst/frc3501/RiceCatRobot/commands/MoveArmFor.class b/bin/org/usfirst/frc3501/RiceCatRobot/commands/MoveArmFor.class
deleted file mode 100644 (file)
index a4dbed9..0000000
Binary files a/bin/org/usfirst/frc3501/RiceCatRobot/commands/MoveArmFor.class and /dev/null differ
diff --git a/bin/org/usfirst/frc3501/RiceCatRobot/commands/OpenClaw.class b/bin/org/usfirst/frc3501/RiceCatRobot/commands/OpenClaw.class
deleted file mode 100644 (file)
index 9702213..0000000
Binary files a/bin/org/usfirst/frc3501/RiceCatRobot/commands/OpenClaw.class and /dev/null differ
diff --git a/bin/org/usfirst/frc3501/RiceCatRobot/commands/ToggleClaw.class b/bin/org/usfirst/frc3501/RiceCatRobot/commands/ToggleClaw.class
deleted file mode 100644 (file)
index 743e4e1..0000000
Binary files a/bin/org/usfirst/frc3501/RiceCatRobot/commands/ToggleClaw.class and /dev/null differ
diff --git a/bin/org/usfirst/frc3501/RiceCatRobot/commands/ToggleCompressor.class b/bin/org/usfirst/frc3501/RiceCatRobot/commands/ToggleCompressor.class
deleted file mode 100644 (file)
index e3c3c34..0000000
Binary files a/bin/org/usfirst/frc3501/RiceCatRobot/commands/ToggleCompressor.class and /dev/null differ
diff --git a/bin/org/usfirst/frc3501/RiceCatRobot/commands/TurnFor.class b/bin/org/usfirst/frc3501/RiceCatRobot/commands/TurnFor.class
deleted file mode 100644 (file)
index a367133..0000000
Binary files a/bin/org/usfirst/frc3501/RiceCatRobot/commands/TurnFor.class and /dev/null differ
diff --git a/bin/org/usfirst/frc3501/RiceCatRobot/subsystems/Arm.class b/bin/org/usfirst/frc3501/RiceCatRobot/subsystems/Arm.class
deleted file mode 100644 (file)
index 4695334..0000000
Binary files a/bin/org/usfirst/frc3501/RiceCatRobot/subsystems/Arm.class and /dev/null differ
diff --git a/bin/org/usfirst/frc3501/RiceCatRobot/subsystems/Claw.class b/bin/org/usfirst/frc3501/RiceCatRobot/subsystems/Claw.class
deleted file mode 100644 (file)
index 99b47d3..0000000
Binary files a/bin/org/usfirst/frc3501/RiceCatRobot/subsystems/Claw.class and /dev/null differ
diff --git a/bin/org/usfirst/frc3501/RiceCatRobot/subsystems/DriveTrain.class b/bin/org/usfirst/frc3501/RiceCatRobot/subsystems/DriveTrain.class
deleted file mode 100644 (file)
index 1cc5654..0000000
Binary files a/bin/org/usfirst/frc3501/RiceCatRobot/subsystems/DriveTrain.class and /dev/null differ