Compare commits

...

13 Commits

Author SHA1 Message Date
Charles A Moonen
4904095018
Merge 25506bfe57 into e9c620b9f6 2026-04-07 15:11:29 +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
Charles A Moonen
25506bfe57
Update to match Deno source, remove things not related to Deno 2023-04-17 12:12:53 -05:00
Charles A Moonen
a3306fc085
Create Deno.gitignore
This is a good file to include for those that are choosing to use the Deno framework for new projects. I believe that the Deno project is used enough to warrant an addition to Github's library of preconfigured .gitignore files.

The contents of the provided file is a direct copy of the .gitignore file provided by the project's own repository. The file I copied is located here: https://github.com/denoland/deno/blob/main/.gitignore

To learn more about the Deno project, please visit https://deno.land

An explanation for the ignored files not mentioned in the comments directly in the file:
```
*.orig # Generally used as a backup when making changes to a file to compare with the original. These can clutter up a repository when they are left as a future reference.
*.pyc # A compiled python script
*.swp # A swap file created by the Vi editor and it's derivatives
.env # A file containing environment variables. Committing this file to a repository can pose a major security risk.

/.cargo_home/ # A directory used by Cargo: https://github.com/rust-lang/cargo#compiling-from-source
/.idea/ # A configuration directory used by JetBrains programs.
/.vscode/ # A configuration directory used by Visual Studio Code
gclient_config.py_entries # I'm not entirely sure what this is beyond that it is related to gclient, see: https://chromium.googlesource.com/chromium/tools/depot_tools.git/+/HEAD/README.gclient.md. If you know more, please feel free to submit a PR with an explanation replacing this comment.
/gh-pages/ # A directory used by Github Pages
/target/ # Often used as an output folder when compiling, building, transpiling, etc. code.
/std/hash/_wasm/target # I assume this is a target folder when compiling web assembly. If you know, please feel free to submit a PR with an explanation replacing this comment.
/tools/wpt/manifest.json # Manifest file for web-platform-tests.
```

Please see the file in the PR for explanations of the rest of the included rules.
2022-07-02 12:06:45 -05:00
5 changed files with 35 additions and 7 deletions

View File

@ -49,14 +49,14 @@ CMakeFiles/
CMakeCache.txt
cmake_install.cmake
Makefile
install_manifest.txt
install_manifest.txt
compile_commands.json
# Temporary files
*.tmp
*.log
*.bak
*.swp
*.tmp
*.log
*.bak
*.swp
# vcpkg
vcpkg_installed/
@ -66,4 +66,4 @@ vcpkg_installed/
# test output & cache
Testing/
.cache/
.cache/

20
Deno.gitignore Normal file
View File

@ -0,0 +1,20 @@
*.orig
*.pyc
*.swp
.env
gclient_config.py_entries
/target/
/std/hash/_wasm/target
/tools/wpt/manifest.json
/test_napi/node_modules
/test_napi/build
/test_napi/third_party_tests/node_modules
# Flamegraphs
/flamebench*.svg
/flamegraph*.svg
# WPT generated cert files
/tools/wpt/certs/index.txt*
/tools/wpt/certs/serial*

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