From 503798a48c76296c71fb877b25e6dc75d845b0ea Mon Sep 17 00:00:00 2001 From: "Mark Tyers (aa7401)" Date: Wed, 7 Feb 2018 10:49:06 +0000 Subject: [PATCH] added more examples to .gitignore --- 03 Sprint Planning.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/03 Sprint Planning.md b/03 Sprint Planning.md index 4557041..d805f61 100644 --- a/03 Sprint Planning.md +++ b/03 Sprint Planning.md @@ -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