Repository: bookkeeper Updated Branches: refs/heads/master fc4800544 -> eeaddeda6
BOOKKEEPER-1054: Add gitignore file We should have a .gitignore file to hide all build generated files. Author: Matteo Merli <[email protected]> Reviewers: Jia Zhai <None> Closes #144 from merlimat/git-ignore Project: http://git-wip-us.apache.org/repos/asf/bookkeeper/repo Commit: http://git-wip-us.apache.org/repos/asf/bookkeeper/commit/eeaddeda Tree: http://git-wip-us.apache.org/repos/asf/bookkeeper/tree/eeaddeda Diff: http://git-wip-us.apache.org/repos/asf/bookkeeper/diff/eeaddeda Branch: refs/heads/master Commit: eeaddeda66fc687d20c2309a8cbc109c5dfeed89 Parents: fc48005 Author: Matteo Merli <[email protected]> Authored: Wed May 10 14:17:43 2017 -0700 Committer: Matteo Merli <[email protected]> Committed: Wed May 10 14:17:43 2017 -0700 ---------------------------------------------------------------------- .gitignore | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/bookkeeper/blob/eeaddeda/.gitignore ---------------------------------------------------------------------- diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..15ad27f --- /dev/null +++ b/.gitignore @@ -0,0 +1,22 @@ +# Eclipse +.classpath +.project +.settings/ +.recommenders/ + +# Intellij +.idea/ +*.iml +*.iws + +# NetBeans +/**/nb-configuration.xml + +# Mac +.DS_Store + +# Maven +lib/ +log/ +target/ +dependency-reduced-pom.xml
