diff options
author | Martijn Dekker <martijn@inlv.org> | 2018-03-10 16:21:28 +0100 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2018-03-22 00:29:58 +0800 |
commit | e006ef83a79bc1800fd11346f16ee67526e59c74 (patch) | |
tree | e35cb605143908228d6743b3e430229bcb633bcc /.gitignore | |
parent | parser: Fix single-quoted patterns in here-documents (diff) | |
download | dash-e006ef83a79bc1800fd11346f16ee67526e59c74.tar.gz dash-e006ef83a79bc1800fd11346f16ee67526e59c74.zip |
shell: provide .gitignore
Here's a .gitignore file for the convenience of casual git users. - M. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..579bd47 --- /dev/null +++ b/.gitignore @@ -0,0 +1,41 @@ +# .gitignore for dash + +# generated by autogen.sh +Makefile.in +/aclocal.m4 +/autom4te.cache/ +/compile +/config.h.in +/configure +/depcomp +/install-sh +/missing + +# generated by configure +Makefile +/config.cache +/config.h +/config.log +/config.status +/src/.deps/ +/stamp-h1 + +# generated by make +/src/token_vars.h + +# Apple debug symbol bundles +*.dSYM/ + +# backups and patch artefacts +*~ +*.bak +*.orig +*.rej + +# OS generated files +.DS_Store +.DS_Store? +._* +.Spotlight* +.Trash* +*[Tt]humbs.db |