Stats returns the stats of a commit.
()
| 445 | |
| 446 | // Stats returns the stats of a commit. |
| 447 | func (c *Commit) Stats() (FileStats, error) { |
| 448 | return c.StatsContext(context.Background()) |
| 449 | } |
| 450 | |
| 451 | // StatsContext returns the stats of a commit. Error will be return if context |
| 452 | // expires. Provided context must be non-nil. |
nothing calls this directly
no test coverage detected