2015-10-05 20:16:52 +00:00
|
|
|
# git-validation
|
|
|
|
|
2016-04-05 14:06:48 +00:00
|
|
|
A way to do validation on git commits.
|
2015-10-05 20:16:52 +00:00
|
|
|
|
2015-10-06 14:47:00 +00:00
|
|
|
## install
|
2015-10-05 20:16:52 +00:00
|
|
|
|
2015-10-06 14:47:00 +00:00
|
|
|
```bash
|
|
|
|
vbatts@valse ~ (master) $ go get -u github.com/vbatts/git-validation
|
|
|
|
```
|
|
|
|
|
|
|
|
## usage
|
|
|
|
|
2015-10-06 14:51:22 +00:00
|
|
|
The flags
|
2015-10-06 14:47:00 +00:00
|
|
|
```bash
|
2015-10-06 14:51:22 +00:00
|
|
|
vbatts@valse ~/src/vb/git-validation (master *) $ git-validation -h
|
|
|
|
Usage of git-validation:
|
|
|
|
-D debug output
|
|
|
|
-d string
|
|
|
|
git directory to validate from (default ".")
|
|
|
|
-list-rules
|
|
|
|
list the rules registered
|
|
|
|
-range string
|
|
|
|
use this commit range instead
|
|
|
|
-run string
|
|
|
|
comma delimited list of rules to run. Defaults to all.
|
|
|
|
-v verbose
|
|
|
|
```
|
|
|
|
|
2016-04-05 14:06:48 +00:00
|
|
|
The entire default rule set is run by default:
|
2015-10-06 14:51:22 +00:00
|
|
|
```bash
|
|
|
|
vbatts@valse ~/src/vb/git-validation (master) $ git-validation -list-rules
|
|
|
|
"DCO" -- makes sure the commits are signed
|
|
|
|
"short-subject" -- commit subjects are strictly less than 90 (github ellipsis length)
|
|
|
|
```
|
|
|
|
|
2016-04-05 14:06:48 +00:00
|
|
|
Or, specify comma-delimited rules to run:
|
2015-10-06 14:51:22 +00:00
|
|
|
```bash
|
|
|
|
vbatts@valse ~/src/vb/git-validation (master) $ git-validation -run DCO,short-subject
|
|
|
|
* b243ca4 "README: adding install and usage" ... PASS
|
2015-10-06 14:47:00 +00:00
|
|
|
* d614ccf "*: run tests in a runner" ... PASS
|
|
|
|
* b9413c6 "shortsubject: add a subject length check" ... PASS
|
|
|
|
* 5e74abd "*: comments and golint" ... PASS
|
|
|
|
* 07a982f "git: add verbose output of the commands run" ... PASS
|
|
|
|
* 03bda4b "main: add filtering of rules to run" ... PASS
|
|
|
|
* c10ba9c "Initial commit" ... PASS
|
2015-10-06 14:51:22 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
Verbosity shows each rule's output:
|
|
|
|
```bash
|
2015-10-06 14:47:00 +00:00
|
|
|
vbatts@valse ~/src/vb/git-validation (master) $ git-validation -v
|
|
|
|
* d614ccf "*: run tests in a runner" ... PASS
|
|
|
|
- PASS - has a valid DCO
|
|
|
|
- PASS - commit subject is 72 characters or less! *yay*
|
|
|
|
* b9413c6 "shortsubject: add a subject length check" ... PASS
|
|
|
|
- PASS - has a valid DCO
|
|
|
|
- PASS - commit subject is 72 characters or less! *yay*
|
|
|
|
* 5e74abd "*: comments and golint" ... PASS
|
|
|
|
- PASS - has a valid DCO
|
|
|
|
- PASS - commit subject is 72 characters or less! *yay*
|
|
|
|
* 07a982f "git: add verbose output of the commands run" ... PASS
|
|
|
|
- PASS - has a valid DCO
|
|
|
|
- PASS - commit subject is 72 characters or less! *yay*
|
|
|
|
* 03bda4b "main: add filtering of rules to run" ... PASS
|
|
|
|
- PASS - has a valid DCO
|
|
|
|
- PASS - commit subject is 72 characters or less! *yay*
|
|
|
|
* c10ba9c "Initial commit" ... PASS
|
|
|
|
- PASS - has a valid DCO
|
|
|
|
- PASS - commit subject is 72 characters or less! *yay*
|
|
|
|
```
|
|
|
|
|
|
|
|
Here's a failure:
|
|
|
|
```bash
|
|
|
|
vbatts@valse ~/src/vb/git-validation (master) $ git-validation
|
|
|
|
* 49f51a8 "README: adding install and usage" ... FAIL
|
|
|
|
- FAIL - does not have a valid DCO
|
|
|
|
* d614ccf "*: run tests in a runner" ... PASS
|
|
|
|
* b9413c6 "shortsubject: add a subject length check" ... PASS
|
|
|
|
* 5e74abd "*: comments and golint" ... PASS
|
|
|
|
* 07a982f "git: add verbose output of the commands run" ... PASS
|
|
|
|
* 03bda4b "main: add filtering of rules to run" ... PASS
|
|
|
|
* c10ba9c "Initial commit" ... PASS
|
|
|
|
1 issues to fix
|
|
|
|
vbatts@valse ~/src/vb/git-validation (master) $ echo $?
|
|
|
|
1
|
|
|
|
```
|
2015-10-06 14:55:42 +00:00
|
|
|
|
|
|
|
## Rules
|
|
|
|
|
|
|
|
Default rules are added by registering them to the `validate` package.
|
|
|
|
Usually by putting them in their own package.
|
|
|
|
See [`./rules/`](./rules/).
|
|
|
|
Feel free to contribute more.
|
|
|
|
|
2016-04-05 14:06:48 +00:00
|
|
|
Otherwise, by using `validate` package API directly, rules can be handed directly to the `validate.Runner`.
|
2015-10-06 14:55:42 +00:00
|
|
|
|