Skip to content

Commit

Permalink
Add .gitignore to default excludes
Browse files Browse the repository at this point in the history
  • Loading branch information
slawekjaranowski committed Apr 8, 2024
1 parent d44d2ec commit 1115dc5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/org/codehaus/plexus/util/AbstractScanner.java
Expand Up @@ -41,7 +41,7 @@ public abstract class AbstractScanner implements Scanner {
* <li>Mac: &#42;&#42;/.DS_Store</li>
* <li>Serena Dimension: &#42;&#42;/.metadata, &#42;&#42;/.metadata/&#42;&#42;</li>
* <li>Mercurial: &#42;&#42;/.hg, &#42;&#42;/.hg/&#42;&#42;</li>
* <li>Git: &#42;&#42;/.git, &#42;&#42;/.git/&#42;&#42;</li>
* <li>Git: &#42;&#42;/.git, &#42;&#42;/.git/&#42;&#42;, &#42;&#42;/.gitignore</li>
* <li>Bitkeeper: &#42;&#42;/BitKeeper, &#42;&#42;/BitKeeper/&#42;&#42;, &#42;&#42;/ChangeSet,
* &#42;&#42;/ChangeSet/&#42;&#42;</li>
* <li>Darcs: &#42;&#42;/_darcs, &#42;&#42;/_darcs/&#42;&#42;, &#42;&#42;/.darcsrepo,
Expand Down Expand Up @@ -106,6 +106,7 @@ public abstract class AbstractScanner implements Scanner {
// git
"**/.git",
"**/.git/**",
"**/.gitignore",

// BitKeeper
"**/BitKeeper",
Expand Down

0 comments on commit 1115dc5

Please sign in to comment.