Repository: incubator-reef Updated Branches: refs/heads/master afccba2c0 -> 05a00e126
[REEF-140] Update .gitignore for ReSharper settings This PR adds the `.sln.DotSettings.user` to the `.gitignore` of the project. Also, I cleaned up the `.gitignore` file and added some structure. JIRA: [REEF-140](https://issues.apache.org/jira/browse/REEF-140) This closes #78 Author: Markus Weimer <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/incubator-reef/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-reef/commit/05a00e12 Tree: http://git-wip-us.apache.org/repos/asf/incubator-reef/tree/05a00e12 Diff: http://git-wip-us.apache.org/repos/asf/incubator-reef/diff/05a00e12 Branch: refs/heads/master Commit: 05a00e126823545e78313a45143667c5ccc8087c Parents: afccba2 Author: Markus Weimer <[email protected]> Authored: Thu Feb 12 14:13:32 2015 -0800 Committer: Julia Wang <[email protected]> Committed: Thu Feb 12 17:11:43 2015 -0800 ---------------------------------------------------------------------- .gitignore | 48 ++++++++++++++++++++++++++++++++++++------------ 1 file changed, 36 insertions(+), 12 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/05a00e12/.gitignore ---------------------------------------------------------------------- diff --git a/.gitignore b/.gitignore index 2556de8..8166181 100644 --- a/.gitignore +++ b/.gitignore @@ -1,22 +1,46 @@ -ml-data -tmp -tang.conf -.DS_Store +# ---------------------------------------------------------------------- +# Folders created by the various REEF runtimes during testing +# ---------------------------------------------------------------------- +REEF_LOCAL_RUNTIME +REEF_MESOS_RUNTIME +# +# ---------------------------------------------------------------------- +# Files generated during builds +# ---------------------------------------------------------------------- target generated build -.settings -.classpath -.project -*.sw[op] +# +# ---------------------------------------------------------------------- +# IDE settings +# ---------------------------------------------------------------------- .externalToolBuilders nbactions*.xml nb-configuration.xml -*~ -\#* +.settings +.classpath +.project *.iml .idea atlassian-ide-plugin.xml -REEF_LOCAL_RUNTIME -REEF_MESOS_RUNTIME +*.sln.DotSettings.user +# +# ---------------------------------------------------------------------- +# OS Files +# ---------------------------------------------------------------------- +.DS_Store +# +# ---------------------------------------------------------------------- +# Temporary Files +# ---------------------------------------------------------------------- +tmp +*~ +\#* +# +# ---------------------------------------------------------------------- +# Unknown Files. Please clean up over time +# ---------------------------------------------------------------------- +ml-data +tang.conf +*.sw[op] profile-*.json
