git-validation
utility for validating git commits (in a CI like GH actions, CircleCI, Jenkins, etc.)
File Explorer
- go.yml
- lint.yml
- commits.json
- commits.go
- commits_test.go
- rule.go
- dco.go
- rule.go
- shortsubject.go
- rules.go
- rules_test.go
- runner.go
- .gitignore
- .travis.yml
- go.mod
- go.sum
- LICENSE
- mage.go
- magefile.go
- main.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.
comma
View Details ▼
comma
This command is an alias of `,`.
tldr ,
View documentation for the original command:
go install
View Details ▼
go install
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 ▼
go run
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:
