commit 36efc76de7867528cd04d01e3265ff8a61d1f4df
parent 6b0c5d54fc380fad10921e4776b3a364abe5510c
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date: Sun, 19 Jul 2015 21:29:04 +0200
Follow the suckless conventions with .gitignore
All the suckless projects have no .gitignore, so it is
better to follow the same directive here. If you want ignore
all the files you can do something like:
(echo '*.o'
echo cc1/cc1
echo cc2/cc2
echo lib/libcc.a
) > .git/info/exclude
Diffstat:
3 files changed, 0 insertions(+), 7 deletions(-)
diff --git a/cc1/.gitignore b/cc1/.gitignore
@@ -1,2 +0,0 @@
-cc1
-*.o
diff --git a/cc2/.gitignore b/cc2/.gitignore
@@ -1,3 +0,0 @@
-cc2
-error.h
-*.o
diff --git a/lib/.gitignore b/lib/.gitignore
@@ -1,2 +0,0 @@
-libcc.a
-*.o