Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | error strings: Don't capitalize, use periods, or newlines | Abhinav Gupta | 2021-12-04 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | Per [Go Code Review Comments][1], > Error strings should not be capitalized (unless beginning with proper > nouns or acronyms) or end with punctuation staticcheck's [ST1005][2] also complains about these. For example, ``` object_walker.go:63:10: error strings should not be capitalized (ST1005) object_walker.go:101:10: error strings should not be capitalized (ST1005) object_walker.go:101:10: error strings should not end with punctuation or a newline (ST1005) plumbing/format/commitgraph/file.go:17:26: error strings should not be capitalized (ST1005) ``` This fixes all instances of this issue reported by staticcheck. [1]: https://github.com/golang/go/wiki/CodeReviewComments#error-strings [2]: https://staticcheck.io/docs/checks/#ST1005 | ||||
* | *: migration from gopkg to go modules | Máximo Cuadros | 2020-03-10 | 1 | -2/+2 |
| | |||||
* | examples,plumbing,utils: typo fixes | ferhat elmas | 2017-11-20 | 1 | -1/+1 |
| | |||||
* | fix format string issues as found by go vet | Santiago M. Mola | 2017-04-26 | 1 | -4/+5 |
| | |||||
* | project: move imports from srcd.works to gopkg.in | Antonio Jesus Navarro Perez | 2017-03-07 | 1 | -2/+2 |
| | | | | To be able to fix #261 we will move again to gopkg.in before v4 stable release. | ||||
* | plumbing/object: move difftree to object package | Antonio Jesus Navarro Perez | 2017-02-24 | 1 | -0/+60 |
- To avoid ciclic dependency errors, we move all the difftree files to object package. - Added Diff method to Tree object. |