Created
November 4, 2013 22:14
-
-
Save zenlambda/7310114 to your computer and use it in GitHub Desktop.
.gitignore file used for "Functional Programming Principles in Scala" https://www.coursera.org/course/progfun. Should also work for "Reactive Programming In Scala" https://www.coursera.org/course/reactive. See comments for further explanation.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.DS_Store | |
*.zip | |
*.class | |
*.log | |
.metadata | |
# sbt specific | |
dist/* | |
target/ | |
lib_managed/ | |
src_managed/ | |
project/boot/ | |
# Scala-IDE specific | |
.scala_dependencies | |
# IntelliJ specific | |
.idea | |
*.iml | |
# Eclipse specific | |
.cache |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
My personal preference is to make one git repository for all assignments, the root of the repository will also be you eclipse workspace root. You open individual projects with the "import existing projects into workspace" option in the import dialog, then select your current workspace root and then select any projects you don't yet have opened.