summaryrefslogtreecommitdiffstats
path: root/services/gitdiff/gitdiff.go
Commit message (Collapse)AuthorAgeFilesLines
* Fix panic when diff (#9187) (#9193)Lunny Xiao2019-11-281-8/+9
| | | | | * fix panic when diff * improve code
* Add Close() method to gogitRepository (#8901) (#8956)zeripath2019-11-131-0/+2
| | | | | | | | | | | Backport #8901 In investigating #7947 it has become clear that the storage component of go-git repositories needs closing. This PR adds this Close function and adds the Close functions as necessary. In TransferOwnership the ctx.Repo.GitRepo is closed if it is open to help prevent the risk of multiple open files. Fixes #7947
* Move git diff codes from models to services/gitdiff (#7889)Lunny Xiao2019-09-051-0/+828
* move git diff codes from models to services/gitdiff * fix template * fix test * fix template