git-validation

(★ 58)

utility for validating git commits (in a CI like GH actions, CircleCI, Jenkins, etc.)

File Explorer

  • .gitignore
  • .travis.yml
  • go.mod
  • go.sum
  • LICENSE
  • mage.go
  • magefile.go
  • main.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.

🔍

comma

View Details ▼

This command is an alias of `,`.

tldr ,

View documentation for the original command:

🔍

go install

View Details ▼

Compile and install packages named by the import paths.

go install

Compile and install the current package:

go install {{path/to/package}}

Compile and install a specific local package:

go install {{golang.org/x/tools/gopls}}@{{latest}}

Install the latest version of a program, ignoring `go.mod` in the current directory:

🔍

go run

View Details ▼

Compile and run Go code without saving a binary.

go run {{path/to/file.go}}

Run a Go file:

go run {{path/to/package}}

Run a main Go package:

// repository documentation