From 8cd620d25f31c4e0a87d6099accd9915e93a5815 Mon Sep 17 00:00:00 2001 From: Danny Holman Date: Mon, 30 Aug 2021 08:22:25 -0500 Subject: git: stop ignoring assembly files Remove the '*.s' line from .gitignore. There are important assembler files that should be in a distribution. Signed-off-by: Danny Holman --- .gitignore | 37 ++++++++++++++++++++++++++++++++++++- 1 file changed, 36 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 1b9f98c..224e6e3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,38 @@ +# Normal rules +.* +*.a +*.bin +*.bz2 +*.c.* *.d +*.dwo +*.elf +*.gz +*.i +*.ll +*.lst +*.lzma +*.lzo *.o -vmbox +*.o.* +*.patch +*.so +*.tar +*.xz +*.zst + +# Top-level files +/vmbox + +# Don't ignore these! +!.gitattributes +!.gitignore + +# ctags/cscope files +cscope.* +ncscope.* +tags +TAGS + +# Generated documentation +/doc/output -- cgit v1.2.3