-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use git plumbing for upload rather than porcelain #5621
Conversation
c1d1704
to
fbee8f8
Compare
Codecov Report
@@ Coverage Diff @@
## master #5621 +/- ##
==========================================
+ Coverage 37.81% 37.93% +0.11%
==========================================
Files 322 322
Lines 47485 47682 +197
==========================================
+ Hits 17957 18087 +130
- Misses 26939 26995 +56
- Partials 2589 2600 +11
Continue to review full report at Codecov.
|
fbee8f8
to
4e42f64
Compare
4e42f64
to
3a80480
Compare
I don't currently set the It wouldn't be hard to set this - the value isn't actually checked (it just needs to be set) - however, that will make a change from the previous settings. |
3a80480
to
2deb696
Compare
2deb696
to
6648c3c
Compare
I've completed reimplementing repo_editor.go. So it's good to look at but I don't think it's ready for merging. |
My simple tests show a 10x speed up for preview diff of a very small file in a very small repo, from 340ms to 34ms. I saw similar speed ups for repouploadfile. I didn't actually check the timings for repouploadfiles but expect it to be similar. Next steps are to move most, if not all of the helper functionality into the git module. Having to do OK, this command can be replaced by:
Further if you place your working directory as the bare repository then commands become a lot simpler. I've therefore rebased my work on this. |
6648c3c
to
0269a1f
Compare
Signed-off-by: Andrew Thornton <art27@cantab.net>
2bdbe30
to
23b43cd
Compare
Will this PR fix #4778? |
My current implementation doesn't account for LFS. It should be relatively easy to add though. |
@filipnavara would it be possible for you to take a look at this and tell me if it works for you and your large repos? |
@zeripath I just finished updating my Gitea installation and called it a day... Will review and give it a try tomorrow. :-) |
@yasuokav ok, it looks like this might be possible however I need to refactor these code paths up and out models to allow us to use the LFS module, otherwise when it comes to store we have to reimplement the ContentStore. (Finding that out was this evening's work.) I might be able to take a look again at this tomorrow. |
Ok I would have had an updated pr to push if I hadn't spent an hour debugging failing uploads because I had written |
OK, I have made this work with LFS. However, in order to make this PR a bit more readable I'm going to close it and reopen with a cleaner history. |
@filipnavara @yasuokav @xxxTonixxx @techknowlogick @lunny @typeless I've decided this PR is too busy and have reopened in #5702 with LFS support. |
… LFS support (#5702) * Use git plumbing for upload: #5621 repo_editor.go: UploadRepoFile * Use git plumbing for upload: #5621 repo_editor.go: GetDiffPreview * Use git plumbing for upload: #5621 repo_editor.go: DeleteRepoFile * Use git plumbing for upload: #5621 repo_editor.go: UploadRepoFiles * Move branch checkout functions out of repo_editor.go as they are no longer used there * BUGFIX: The default permissions should be 100644 This is a change from the previous code but is more in keeping with the default behaviour of git. Signed-off-by: Andrew Thornton <art27@cantab.net> * Standardise cleanUploadFilename to more closely match git See verify_path in: https://github.com/git/git/blob/7f4e64169352e03476b0ea64e7e2973669e491a2/read-cache.c#L951 Signed-off-by: Andrew Thornton <art27@cantab.net> * Redirect on bad paths Signed-off-by: Andrew Thornton <art27@cantab.net> * Refactor to move the uploading functions out to a module Signed-off-by: Andrew Thornton <art27@cantab.net> * Add LFS support Signed-off-by: Andrew Thornton <art27@cantab.net> * Update upload.go attribution header Upload.go is essentially the remnants of repo_editor.go. The remaining code is essentially unchanged from the Gogs code, hence the Gogs attribution. * Delete upload files after session committed * Ensure that GIT_AUTHOR_NAME etc. are valid for git see #5774 Signed-off-by: Andrew Thornton <art27@cantab.net> * Add in test cases per @lafriks comment * Add space between gitea and github imports Signed-off-by: Andrew Thornton <art27@cantab.net> * more examples in TestCleanUploadName Signed-off-by: Andrew Thornton <art27@cantab.net> * fix formatting Signed-off-by: Andrew Thornton <art27@cantab.net> * Set the SSH_ORIGINAL_COMMAND to ensure hooks are run Signed-off-by: Andrew Thornton <art27@cantab.net> * Switch off SSH_ORIGINAL_COMMAND Signed-off-by: Andrew Thornton <art27@cantab.net>
When uploading files using the GUI, Gitea currently does:
a) A full clone - Including the whole object DB
b) A full branch checkout - every file
c) Copies the uploaded file to this cloned repository
d) Add/stages the changes
e) Commits
f) Pushes to the real repository
g) Cleans up the cloned repository - deleting the whole object db and checkout.
This is extremely inefficient.
This PR takes a different approach and, instead of using the git porcelain commands (git add and the like), uses the plumbing commands to (hopefully) significantly speed up this process. See my comments in #601 (#601 (comment)).
Currently my approach is to use the git-cli commands which can/could be migrated to go-git commands later.
Will fix #5600.