Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix incorrect object id hash function (#30708) | wxiaoguang | 2024-04-26 | 1 | -0/+4 |
| | | | | | | | | | | | | | Great thanks to @oliverpool for figuring out the problem and proposing a fix. Regression of #28138 Incorrect hash causes the user's LFS files get all deleted when running `doctor fix all` (by the way, remove unused/non-standard comments) Co-authored-by: Giteabot <teabot@gitea.io> | ||||
* | Adjust object format interface (#28469) | Lunny Xiao | 2023-12-17 | 1 | -1/+1 |
| | | | | | | | - Remove `ObjectFormatID` - Remove function `ObjectFormatFromID`. - Use `Sha1ObjectFormat` directly but not a pointer because it's an empty struct. - Store `ObjectFormatName` in `repository` struct | ||||
* | Abstract hash function usage (#28138) | Adam Majer | 2023-12-13 | 1 | -0/+21 |
Refactor Hash interfaces and centralize hash function. This will allow easier introduction of different hash function later on. This forms the "no-op" part of the SHA256 enablement patch. |