Skip to content
Permalink
Browse files
added more examples to .gitignore
  • Loading branch information
aa7401 committed Feb 7, 2018
1 parent 07f2cda commit 503798a48c76296c71fb877b25e6dc75d845b0ea
Showing 1 changed file with 4 additions and 1 deletion.
@@ -152,10 +152,13 @@ Create a file in the repository directory, this file should be called `.gitignor

```
node_modules/
libraries/
*.exe
*.hex
.DS_Store
```

In this example we want git to ignore any directories called `node_modules/` as well as any files with an `.exe` file extension.
In this example we want git to ignore any directories called `node_modules/` or `libraries/` as well as any files with an `.exe` or `.hex` file extension. It also ignores the hidden files that MacOS uses to organise the directories.

## 6 Next Steps

0 comments on commit 503798a

Please sign in to comment.