raphinesse commented on a change in pull request #831: Ignore auto-generated eclipse buildship files URL: https://github.com/apache/cordova-android/pull/831#discussion_r344137046
########## File path: .gitignore ########## @@ -46,3 +46,5 @@ node_modules/ coverage/ .nyc_output/ package-lock.json +# Eclipse Buildship files +**/.project Review comment: This will match the same files: ```suggestion .project ``` From https://git-scm.com/docs/gitignore#_pattern_format: > If there is a [directory] separator at the beginning or middle (or both) of the pattern, then the pattern is relative to the directory level of the particular `.gitignore` file itself. Otherwise the pattern may also match at any level below the `.gitignore` level. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
