From ea69b855a18d0cee1108241a7c232383ea1e11a1 Mon Sep 17 00:00:00 2001 From: Tony Pham Date: Wed, 17 May 2017 12:36:04 -0400 Subject: [PATCH] Add gitignore to not commit .o and .txt files --- .gitignore | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..73fafe5 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +#Ignoring text Files +*.txt + +#Ignoring all .o file +*.o