]> source.dussan.org Git - gitea.git/commit
Do not read or write git reference files directly (#18079)
authorzeripath <art27@cantab.net>
Thu, 23 Dec 2021 13:44:00 +0000 (13:44 +0000)
committerGitHub <noreply@github.com>
Thu, 23 Dec 2021 13:44:00 +0000 (21:44 +0800)
commitffc08c1914fbe6a5a5ebe9c8571b790ac6024d71
tree78e95e6dbf82d25e0fa9c534cab61fb8d266cc9f
parente0cf3d86c44fde99b49f12c7a1386cbf433a0207
Do not read or write git reference files directly (#18079)

Git will and can pack references into packfiles and therefore if you write/read the
files directly you will get false results. Instead you should use update-ref and
show-ref. To that end I have created three new functions in git/repo_commit.go that
will do this correctly.

Related #17191

Signed-off-by: Andrew Thornton <art27@cantab.net>
modules/git/repo_commit_gogit.go
modules/git/repo_commit_nogogit.go
modules/git/repo_compare.go
modules/git/repo_compare_test.go
routers/web/repo/pull.go
services/migrations/gitea_uploader.go