From 6df052b2710239951cd30e4f83851ad02176e091 Mon Sep 17 00:00:00 2001 From: Brennan Vincent Date: Wed, 5 Aug 2015 15:41:59 -0700 Subject: [PATCH 1/2] Put the usual stuff in gitignore --- .gitignore | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2bc1236 --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ +atosl +atosl.dep +atosl.o +common.dep +common.o +subprograms.dep +subprograms.o +tags From fab86f9aa0db1fe1d094d24afc3c04ba98f23080 Mon Sep 17 00:00:00 2001 From: Brennan Vincent Date: Wed, 5 Aug 2015 17:35:22 -0700 Subject: [PATCH 2/2] Make gitignore more general -- ignore *.o and *.dep --- .gitignore | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 2bc1236..5d7020a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,4 @@ atosl -atosl.dep -atosl.o -common.dep -common.o -subprograms.dep -subprograms.o +*.o +*.dep tags