Skip to content

Instantly share code, notes, and snippets.

@zenlambda
Created November 4, 2013 22:14
Show Gist options
  • Save zenlambda/7310114 to your computer and use it in GitHub Desktop.
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.
.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
@zenlambda
Copy link
Author

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment