|
1 | | -# Created by https://www.toptal.com/developers/gitignore/api/macos,r,archive,archives,compressed,compression,compressedarchive,windows,linux,visualstudiocode |
2 | | -# Edit at https://www.toptal.com/developers/gitignore?templates=macos,r,archive,archives,compressed,compression,compressedarchive,windows,linux,visualstudiocode |
| 1 | +# Created by https://www.toptal.com/developers/gitignore/api/r,macos,archive,archives,compressedarchive,linux,git |
| 2 | +# Edit at https://www.toptal.com/developers/gitignore?templates=r,macos,archive,archives,compressedarchive,linux,git |
3 | 3 |
|
4 | 4 | ### Archive ### |
5 | 5 |
|
|
65 | 65 | *.egg |
66 | 66 | *.txz |
67 | 67 |
|
68 | | -### Compressed ### |
69 | | -*.pkg |
70 | | -*.sit |
71 | | -*.sitx |
72 | | -*.zipx |
73 | | - |
74 | 68 | ### CompressedArchive ### |
75 | 69 |
|
76 | 70 |
|
|
157 | 151 | # An archive format designed for the Apple II series of computers. The canonical implementation is ShrinkIt, which can operate on disk images as well as files. Preferred compression algorithm is a combination of RLE and 12-bit LZW. Archives can be manipulated with the command-line NuLib tool, or the Windows-based CiderPress. |
158 | 152 | *.shk |
159 | 153 | # A compression format common on Apple Macintosh computers. The free StuffIt Expander is available for Windows and OS X. |
| 154 | +*.sit |
160 | 155 | # The replacement for the .sit format that supports more compression methods, UNIX file permissions, long file names, very large files, more encryption options, data specific compressors (JPEG, Zip, PDF, 24-bit image, MP3). The free StuffIt Expander is available for Windows and OS X. |
| 156 | +*.sitx |
161 | 157 | # A royalty-free compressing format |
162 | 158 | *.sqx |
163 | 159 | # The "tarball" format combines tar archives with a file-based compression scheme (usually gzip). Commonly used for source and binary distribution on Unix-like platforms, widely available elsewhere. |
|
188 | 184 | # Yamazaki zipper archive. Compression format used in DeepFreezer archiver utility created by Yamazaki Satoshi. Read and write support exists in TUGZip, IZArc and ZipZag |
189 | 185 | *.yz1 |
190 | 186 | # The most widely used compression format on Microsoft Windows. Commonly used on Macintosh and Unix systems as well. |
| 187 | +*.zipx |
191 | 188 | # application/x-zoo zoo Multiple Multiple Yes |
192 | 189 | *.zoo |
193 | 190 | # Journaling (append-only) archive format with rollback capability. Supports deduplication and incremental update based on last-modified dates. Multi-threaded. Compresses in LZ77, BWT, and context mixing formats. Open source. |
|
196 | 193 | *.zz |
197 | 194 |
|
198 | 195 |
|
199 | | -### Compression ### |
200 | | - |
201 | | -### From https://en.wikipedia.org/wiki/List_of_archive_formats |
202 | | - |
203 | | -## Compression only |
204 | | -# An open source, patent- and royalty-free compression format. The compression algorithm is a Burrows-Wheeler transform followed by a move-to-front transform and finally Huffman coding |
205 | | -# Old compressor for QNX4 OS. The compression algorithm is a modified LZSS, with an adaptive Huffman coding. |
206 | | -*.F |
207 | | -# GNU Zip, the primary compression format used by Unix-like systems. The compression algorithm is DEFLATE. |
208 | | -# An alternate LZMA algorithm implementation, with support for checksums and ident bytes. |
209 | | -*.lz |
210 | | -# The LZMA compression algorithm as used by 7-Zip |
211 | | -# An implementation of the LZO data compression algorithm |
212 | | -*.lzo |
213 | | -# A compression program designed to do particularly well on very large files containing long distance redundancy. |
214 | | -*.rz |
215 | | -# Windows compress/decompress- Linux and Mac OS X decompress only A compression program designed to do high compression on SF2 files (SoundFont) |
216 | | -*.sfark |
217 | | -# A compression format invented by Google and open-sourced in 2011. Snappy aims for very high speeds, reasonable compression, and maximum stability rather than maximum compression or compatibility with any other compression library. |
218 | | -*.sz |
219 | | -# Squeeze: A program which compressed files. A file which was "squeezed" had the middle initial of the name changed to "Q", so that a squeezed text file would end with .TQT, a squeezed executable would end with .CQM or .EQE. Typically used with .LBR archives, either by storing the squeezed files in the archive, or by storing the files decompressed and then compressing the archive, which would have a name ending in ".LQR". |
220 | | -*.?Q? |
221 | | -# A compression program written by Steven Greenberg implementing the LZW algorithm. For several years in the CP/M world when no implementation was available of ARC, CRUNCHed files stored in .LBR archives were very popular. CRUNCH's implementation of LZW had a somewhat unique feature of modifying and occasionally clearing the code table in memory when it became full, resulting in a few percent better compression on many files. |
222 | | -*.?Z? |
223 | | -# A compression format using LZMA2 to yield very high compression ratios. |
224 | | -# The traditional Huffman coding compression format. |
225 | | -*.z |
226 | | -# The traditional LZW compression format. |
227 | | -*.Z |
228 | | -# Joke compression program, actually increasing file size |
229 | | -*.infl |
230 | | -# Compression format(s) used by some DOS and Windows install programs. MS-DOS includes expand.exe to decompress its install files. The compressed files are created with a matching compress.exe command. The compression algorithm is LZSS. |
231 | | -*.??_ |
| 196 | +### Git ### |
| 197 | +# Created by git for backups. To disable backups in Git: |
| 198 | +# $ git config --global mergetool.keepBackup false |
| 199 | +*.orig |
232 | 200 |
|
| 201 | +# Created by git when using merge tools for conflicts |
| 202 | +*.BACKUP.* |
| 203 | +*.BASE.* |
| 204 | +*.LOCAL.* |
| 205 | +*.REMOTE.* |
| 206 | +*_BACKUP_*.txt |
| 207 | +*_BASE_*.txt |
| 208 | +*_LOCAL_*.txt |
| 209 | +*_REMOTE_*.txt |
233 | 210 |
|
234 | 211 | ### Linux ### |
235 | 212 | *~ |
@@ -302,6 +279,7 @@ Temporary Items |
302 | 279 |
|
303 | 280 | # RStudio files |
304 | 281 | .Rproj.user/ |
| 282 | +*.Rproj |
305 | 283 |
|
306 | 284 | # produced vignettes |
307 | 285 | vignettes/*.html |
@@ -334,45 +312,34 @@ rsconnect/ |
334 | 312 | # R package: bookdown caching files |
335 | 313 | /*_files/ |
336 | 314 |
|
337 | | -### VisualStudioCode ### |
338 | | -.vscode/* |
339 | | -!.vscode/settings.json |
340 | | -!.vscode/tasks.json |
341 | | -!.vscode/launch.json |
342 | | -!.vscode/extensions.json |
343 | | -!.vscode/*.code-snippets |
| 315 | +# R package docs |
| 316 | +inst/doc |
| 317 | + |
| 318 | +# Personal R profile |
| 319 | +.Rprofile |
| 320 | + |
| 321 | +# Random HTML files |
| 322 | +*.html |
344 | 323 |
|
345 | | -# Local History for Visual Studio Code |
346 | | -.history/ |
| 324 | +# End of https://www.toptal.com/developers/gitignore/api/r,macos,archive,archives,compressedarchive,linux,git |
347 | 325 |
|
348 | | -# Built Visual Studio Code Extensions |
349 | | -*.vsix |
| 326 | +# Additional ignores |
350 | 327 |
|
351 | | -### VisualStudioCode Patch ### |
352 | | -# Ignore all local history of files |
353 | | -.history |
354 | | -.ionide |
| 328 | +/doc/ |
| 329 | +/Meta/ |
| 330 | +**/*.log |
| 331 | +test.tsv |
355 | 332 |
|
356 | | -### Windows ### |
357 | | -# Windows thumbnail cache files |
358 | | -Thumbs.db |
359 | | -Thumbs.db:encryptable |
360 | | -ehthumbs.db |
361 | | -ehthumbs_vista.db |
| 333 | +# Ignore overrides |
362 | 334 |
|
363 | | -# Dump file |
364 | | -*.stackdump |
| 335 | +!inst/extdata/* |
365 | 336 |
|
366 | | -# Folder config file |
367 | | -[Dd]esktop.ini |
| 337 | +*.bak |
| 338 | +*.pdf |
| 339 | +*.jats |
368 | 340 |
|
369 | | -# Recycle Bin used on file shares |
370 | | -$RECYCLE.BIN/ |
371 | 341 |
|
372 | | -# Windows Installer files |
373 | | -*.msix |
| 342 | +.vscode/ |
374 | 343 |
|
375 | | -# Windows shortcuts |
376 | | -*.lnk |
377 | 344 |
|
378 | | -# End of https://www.toptal.com/developers/gitignore/api/macos,r,archive,archives,compressed,compression,compressedarchive,windows,linux,visualstudiocode |
| 345 | +tests/*.json |
0 commit comments