Compare commits

...

13 Commits

Author SHA1 Message Date
Nwolisa Vincent
23ffd36708
Merge 585719a433 into e9c620b9f6 2026-04-07 08:09:19 +00:00
Devin Dooley
e9c620b9f6
Merge pull request #4837 from haras-unicorn/feat-nix-ignore-nixos-test-history
feat(nix): ignore nixos test history
2026-04-06 09:43:23 -07:00
Devin Dooley
5853962226
Merge pull request #4826 from gxono/patch-1
TeX: add ConTeXt utility cache file (.tuc, .tui & tuo)
2026-04-06 09:41:52 -07:00
haras
c5bf3caf29 feat(nix): ignore nixos test history 2026-04-06 18:38:27 +02:00
Devin Dooley
7514684825
Merge pull request #4835 from ysmartin/patch-1
Fix comment URL for Maven wrapper usage
2026-04-06 09:32:48 -07:00
Devin Dooley
ad49657df2
Merge pull request #4836 from T1ckbase/fix/cpp-gitignore-whitespace
Remove trailing whitespace in C++.gitignore
2026-04-06 09:30:03 -07:00
T1ckbase
9ffced6030 Remove remaining trailing whitespace in C++.gitignore 2026-04-05 03:24:04 +08:00
T1ckbase
49990d1d63 Remove trailing whitespace in C++.gitignore 2026-04-05 03:15:27 +08:00
ysmartin
3d21cef359
Fix comment URL for Maven wrapper usage
Updated the URL and fragment in the comment for Maven wrapper usage.
2026-04-04 14:47:28 +02:00
Jonatán Perren
de90107f1a
TeX: add ConTeXt utility cache file (.tuc, .tui & tuo)
ConTeXt generates .tuc files (utility cache) during each run. 

These can be removed using the command line [--purgeall](https://wiki.contextgarden.net/Input_and_compilation/Executable_scripts_and_auxiliary_files/context_script#--purgeall).

ConTeXt MKII generates .tui and .tuo with the generation of [ToC](https://wiki.contextgarden.net/Document_structure_and_headlines/Table_of_contents).

These files store document metadata between compilations and are not part of the source, so they should be ignored.
2026-04-03 22:06:17 -03:00
Jonatán Perren
9aa86b4610
TeX: add ConTeXt utility cache file (.tua & .tuc)
ConTeXt generates .tua and .tuc files (utility cache) during each run. These files store document metadata between compilations and are not part of the source, so they should be ignored.
2026-03-27 21:24:28 -03:00
Nwolisa Vincent
585719a433
Add Assembly.gitignore file 2025-10-17 01:20:36 +01:00
Nwolisa Vincent
75d48918ef
Assembly .gitignore file 2025-10-17 01:19:34 +01:00
5 changed files with 200 additions and 7 deletions

185
Assembly.gitignore Normal file
View File

@ -0,0 +1,185 @@
# Assembly .gitignore template
# For Assembly language projects using various assemblers and toolchains
#
# Recommended: Add your OS-specific and editor-specific gitignore templates
# (e.g., Linux.gitignore, macOS.gitignore, Windows.gitignore, VisualStudio.gitignore, Vim.gitignore)
# Object files
*.o
*.obj
*.OBJ
*.ko
*.elf
# Executables and binary files
*.exe
*.out
*.bin
*.BIN
*.hex
*.HEX
*.app
*.axf
*.elf
*.i*86
*.x86_64
# Linker output
*.map
*.MAP
*.ilk
*.exp
# Library files
*.lib
*.a
*.la
*.lo
*.so
*.so.*
*.dylib
*.dll
# Assembly listing files
*.lst
*.LST
*.lis
*.LIS
# Symbol files
*.sym
*.SYM
# NASM specific
*.nasm.tmp
# MASM/TASM specific
*.cod
*.COD
# Debug files
*.dbg
*.pdb
*.idb
*.dSYM/
*.su
*.idb
*.ipdb
*.iobj
# Preprocessor output
*.i
*.ii
*.s.preprocessed
# Dependency files
*.d
*.dep
# Intel HEX and other output formats
*.s19
*.s28
*.s37
*.srec
*.ihex
# Motorola S-record files
*.mot
*.mhx
# Bootloader files
*.boot
# Disassembly files
*.disasm
*.dis
# Core dumps
core
core.*
*.core
# Backup files (common in assembly editors)
*~
*.bak
*.BAK
*.old
*.orig
*.swp
*.swo
# Build directories
build/
Build/
BUILD/
bin/
Bin/
BIN/
obj/
Obj/
OBJ/
out/
output/
Output/
dist/
release/
debug/
Debug/
Release/
# IDE and assembler-specific project files
*.workspace
*.uvproj*
*.uvopt*
*.uvgui*
*.cproj
*.atsln
*.atsuo
# Keil uVision
*.uvopt
*.uvproj
*.uvgui.*
*.uvproj.*
*.plg
*.tra
*.Administrator.*
*.bak.*
# IAR Embedded Workbench
*.eww
*.dep
*.wsdt
*.dni
*.wspos
*.dbgdt
# Atmel Studio
*.atsln
*.atsuo
*.cproj
# Make generated files
*.mk
Makefile.bak
# CMake
CMakeCache.txt
CMakeFiles/
cmake_install.cmake
# Tags and indexing
tags
TAGS
.tags
.tags_sorted_by_file
cscope.out
cscope.files
cscope.in.out
cscope.po.out
# Testing artifacts
test_results/
*.test
*.testlog

View File

@ -7,7 +7,7 @@ release.properties
dependency-reduced-pom.xml
buildNumber.properties
.mvn/timing.properties
# https://maven.apache.org/wrapper/#usage-without-binary-jar
# https://maven.apache.org/tools/wrapper/#Usage_with_or_without_Binary_JAR
.mvn/wrapper/maven-wrapper.jar
# Eclipse m2e generated files

View File

@ -4,3 +4,6 @@ result-*
# Ignore automatically generated direnv output
.direnv
# Ignore NixOS interactive test driver history
**/.nixos-test-history

View File

@ -75,6 +75,11 @@ acs-*.bib
# comment
*.cut
# context
*.tuc
*.tui
*.tuo
# cprotect
*.cpt