Update exclude executables script
This commit is contained in:
@ -1,3 +1,4 @@
|
||||
#!/bin/sh
|
||||
find . -perm /111 -type f | sed 's#^./##' | sort > .gitignore
|
||||
find . -perm /111 -type f -not -path "./.git/*" | sed 's#^./##' | sort > .gitignore
|
||||
echo "*.c" >> .gitignore
|
||||
echo "*.o" >> .gitignore
|
||||
|
Reference in New Issue
Block a user