diff options
author | Danny Holman <dholman@gymli.xyz> | 2021-08-30 08:22:25 -0500 |
---|---|---|
committer | Danny Holman <dholman@gymli.xyz> | 2021-08-30 08:22:25 -0500 |
commit | 8cd620d25f31c4e0a87d6099accd9915e93a5815 (patch) | |
tree | 55d917a2b3aba6908e16b0383af822f0b23db075 | |
parent | edd05521fb74c4080afe27fdbd760d0a2fe9d88e (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-- | .gitignore | 37 |
1 files changed, 36 insertions, 1 deletions
@@ -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 |