Files
forgejo/modules/git
Gusted 1ebf4abddc [BUG] Use correct format
- `%w` is to wrap errors, but can only be used by `fmt.Errorf`. Instead
use `%v` to display the error.
- Regression of #2763

Before:
[E] failed to run attr-check. Error: %!w(*exec.ExitError=&{0xc006568e28 []})
Stderr: fatal: this operation must be run in a work tree

After:
[E] failed to run attr-check. Error: exit status 128
Stderr: fatal: this operation must be run in a work tree
2024-03-28 22:27:53 +01:00
..
2024-02-26 22:30:27 +01:00
2024-03-26 19:04:26 +01:00
2024-03-28 11:58:26 +00:00
2024-03-28 22:27:53 +01:00
2024-03-26 19:04:26 +01:00

Git Module

This module is merged from https://github.com/go-gitea/git which is a Go module to access Git through shell commands. Now it's a part of gitea's main repository for easier pull request.