summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDanny Holman <dholman@gymli.xyz>2021-08-30 08:22:25 -0500
committerDanny Holman <dholman@gymli.xyz>2021-08-30 08:22:25 -0500
commit8cd620d25f31c4e0a87d6099accd9915e93a5815 (patch)
tree55d917a2b3aba6908e16b0383af822f0b23db075
parentedd05521fb74c4080afe27fdbd760d0a2fe9d88e (diff)
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 <dholman@gymli.xyz>
-rw-r--r--.gitignore37
1 files changed, 36 insertions, 1 deletions
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