tar-split
checksum-reproducible tar archives (utility/library)
File Explorer
- go.yml
- lint.yml
- FUNDING.yml
- file-and-dir.tar
- gnu-incremental.tar
- gnu-long-nul.tar
- gnu-multi-hdrs.tar
- gnu-nil-sparse-data.tar
- gnu-nil-sparse-hole.tar
- gnu-not-utf8.tar
- gnu-sparse-big.tar
- gnu-sparse-many-zeros.tar.bz2
- gnu-utf8.tar
- gnu.tar
- hardlink.tar
- hdr-only.tar
- invalid-go17.tar
- issue10968.tar
- issue11169.tar
- issue12435.tar
- neg-size.tar
- nil-uid.tar
- pax-bad-hdr-file.tar
- pax-bad-hdr-large.tar.bz2
- pax-bad-mtime-file.tar
- pax-global-records.tar
- pax-multi-hdrs.tar
- pax-nil-sparse-data.tar
- pax-nil-sparse-hole.tar
- pax-nul-path.tar
- pax-nul-xattrs.tar
- pax-path-hdr.tar
- pax-pos-size-file.tar
- pax-records.tar
- pax-sparse-big.tar
- pax.tar
- small.txt
- small2.txt
- sparse-formats.tar
- star.tar
- trailing-slash.tar
- ustar-file-devs.tar
- ustar-file-reg.tar
- ustar.tar
- v7.tar
- writer-big-long.tar
- writer-big.tar
- writer.tar
- xattrs.tar
- common.go
- example_test.go
- format.go
- reader.go
- reader_test.go
- stat_actime1.go
- stat_actime2.go
- stat_unix.go
- strconv.go
- strconv_test.go
- tar_test.go
- writer.go
- writer_test.go
- asm.go
- checksize.go
- disasm.go
- main.go
- README.md
- tar_benchmark_test.go
- DESIGN.md
- main.go
- 1c51fc286aa95d9413226599576bafa38490b1e292375c90de095855b64caea6
- extranils.tar.gz
- fatlonglink.tar.gz
- iso-8859.tar.gz
- longlink.tar.gz
- notenoughnils.tar.gz
- t.tar.gz
- assemble.go
- assemble_test.go
- disassemble.go
- disassemble_test.go
- doc.go
- iterate.go
- iterate_test.go
- README.md
- doc.go
- entry.go
- entry_test.go
- getter.go
- getter_test.go
- packer.go
- packer_test.go
- go.mod
- go.sum
- LICENSE
- mage.go
- mage_color.go
- magefile.go
- README.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
git archive
View Details ▼
git archive
Create an archive of files from a tree.
git archive {{[-v|--verbose]}} HEAD
Create a `.tar` archive from the contents of the current `HEAD` and print it to `stdout`:
git archive {{[-v|--verbose]}} --format zip HEAD
Use the Zip format and report progress verbosely:
git archive {{[-v|--verbose]}} {{[-o|--output]}} {{path/to/file.zip}} HEAD
Output the Zip archive to a specific file:
go get
View Details ▼
go get
Add a dependency package, or download packages in legacy GOPATH mode.
Note: `./...` is a Go package pattern understood by Go tooling. It matches the current package and all packages recursively under the current directory.
go get {{example.com/pkg}}
Add a specified package to `go.mod` in module-mode or install the package in GOPATH-mode:
go get {{example.com/pkg}}@{{v1.2.3}}
Modify the package with a given version in module-aware mode:
go get {{example.com/pkg}}@{{none}}
Remove a specified package:
# Project Badges
-
Build Status
-
Lint
-
Go Report Card Visit
