Author: adietish
Date: 2011-12-07 07:24:09 -0500 (Wed, 07 Dec 2011)
New Revision: 37053
Modified:
trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/ImportProjectWizardModel.java
Log:
[JBIDE-10171] creating .gitignore (commented TODO: merge existing .gitignore)
Modified:
trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/ImportProjectWizardModel.java
===================================================================
---
trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/ImportProjectWizardModel.java 2011-12-07
12:22:48 UTC (rev 37052)
+++
trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/ImportProjectWizardModel.java 2011-12-07
12:24:09 UTC (rev 37053)
@@ -204,15 +204,14 @@
/**
* Creates the git ignore file with a predefined set of entries. An existing
* .gitignore file is not overwritten, we then just dont do anything.
- * <p>
- * TODO: merge existing .gitignore
- * (
https://issues.jboss.org/browse/JBIDE-10391)
*
* @param projectFolder
* @throws IOException
*/
private void createGitIgnore(File projectFolder) throws IOException {
GitIgnore gitIgnore = new GitIgnore(projectFolder);
+ // TODO: merge existing .gitignore
+ // (
https://issues.jboss.org/browse/JBIDE-10391)
if (gitIgnore.exists()) {
return;
}