tar-split

(★ 112)

checksum-reproducible tar archives (utility/library)

File Explorer

  • go.mod
  • go.sum
  • LICENSE
  • mage.go
  • mage_color.go
  • magefile.go
  • README.md

# Use via CDN

jsDelivr

jsDelivr 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 ▼

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 ▼

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 Build Status
  • Lint Lint
  • Go Report Card Go Report Card Visit
// repository documentation