You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aurora.apache.org by ma...@apache.org on 2014/06/04 22:36:27 UTC

git commit: Fixed syntax gotcha in .gitignore.

Repository: incubator-aurora
Updated Branches:
  refs/heads/master cc2a92d2b -> 29352d813


Fixed syntax gotcha in .gitignore.

Bugs closed: AURORA-485

Reviewed at https://reviews.apache.org/r/22092/


Project: http://git-wip-us.apache.org/repos/asf/incubator-aurora/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-aurora/commit/29352d81
Tree: http://git-wip-us.apache.org/repos/asf/incubator-aurora/tree/29352d81
Diff: http://git-wip-us.apache.org/repos/asf/incubator-aurora/diff/29352d81

Branch: refs/heads/master
Commit: 29352d813a8f02b7f8f71fd8946301fd56600fc5
Parents: cc2a92d
Author: Suman Karumuri <ma...@apache.org>
Authored: Wed Jun 4 13:36:12 2014 -0700
Committer: Suman Karumuri <sk...@twitter.com>
Committed: Wed Jun 4 13:36:12 2014 -0700

----------------------------------------------------------------------
 .gitignore | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-aurora/blob/29352d81/.gitignore
----------------------------------------------------------------------
diff --git a/.gitignore b/.gitignore
index 2d44c70..4791787 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,19 +1,20 @@
-.idea/
+# SYNTAX NOTE: dist/ will ignore any directory named dist. Use dist/* to ignore dist in project root.
+.idea/*
 *.iml
 *.ipr
 *.iws
 *.pyc
 *~
 .coverage
-.gradle/
+.gradle/*
 .pants.*
-.vagrant/
-build/
+.vagrant/*
+build/*
 build-support/*.pex
 build-support/*.venv
 build-support/python/*.venv
 build-support/virtualenv-*
 dist/*
 gradle-app.setting
-out/
-third_party/
+out/*
+third_party/*