Skip to content
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

Merge conflict checking in progress. Try again in a few minutes #19818

Closed
stu1811 opened this issue May 27, 2022 · 29 comments
Closed

Merge conflict checking in progress. Try again in a few minutes #19818

stu1811 opened this issue May 27, 2022 · 29 comments
Labels
issue/needs-feedback For bugs, we need more details. For features, the feature must be described in more detail type/bug

Comments

@stu1811
Copy link

stu1811 commented May 27, 2022

Description

For the past several version we've run into many PRs that get stuck "Merge conflict checking in progress. Try again in a few minutes". The only work around I've found is to close the PR and open a new one with the same branch. Is there a way to force it to try again?

Gitea Version

1.16.8

Can you reproduce the bug on the Gitea demo site?

No

Log Gist

No response

Screenshots

No response

Git Version

2.36.0

Operating System

RHEL 7

How are you running Gitea?

Self hosted behind an apache proxy. I download the amd64 linux binary from the releases page. Binary is started by service at boot.

Database

MySQL

@silentcodeg
Copy link
Contributor

Do you remember at which version of Gitea the problem started to show? That would help narrow down the cause.

@stu1811
Copy link
Author

stu1811 commented May 27, 2022

I want to say sometime in the 1.15.X series but it's worse in the past few 1.16.X. Side note I tried updating our git from 2.24.1 to 2.36.0 and it didn't help.

@silentcodeg
Copy link
Contributor

Is there a way for you to reproduce the problem and capture the gitea logs when you do? Or does it happen randomly?

@stu1811
Copy link
Author

stu1811 commented May 27, 2022

Which logging should I enable? The current logs aren't very helpful.

[Log]
MODE = file
LEVEL = error
ROUTER_LOG_LEVEL = error

[Server]
DISABLE_ROUTER_LOG = true

[Database]
LOG_SQL = false

Edit: It seems to happen after our main branch is updated. Normally the Update Branch button would be available at this point.
Edit 2: Not sure if it matters but we're using LFS.

@stu1811
Copy link
Author

stu1811 commented May 27, 2022

The server is on separate network so I'm manually copying things over.

..dules/git/command.go:146:RunWithContent() [D] /PATH/TO/REPO.git: /usr/bin/git -c credential.helper= -c protocol.version=2 -c uploadpack.allowfilter=true -c uploadpack.allowAnySHA1Want=true -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean=merge-base --refs/heads/main refs/pull/1654/head
..dules/git/command.go:246:RunInDirTimeutEnv() [T] Stdout: <SHA>

@silentcodeg
Copy link
Contributor

This is unfortunately too little information to figure out the cause of the problem. If someone could take a look at the full logs and run some tests with the live instance I'm pretty sure there is a simple explanation.

@99rgosse

This comment was marked as off-topic.

@silentcodeg

This comment was marked as off-topic.

@stu1811

This comment was marked as off-topic.

@silentcodeg

This comment was marked as off-topic.

@silentcodeg

This comment was marked as off-topic.

@lunny

This comment was marked as off-topic.

@99rgosse

This comment was marked as off-topic.

@stu1811
Copy link
Author

stu1811 commented May 31, 2022

@zeripath just posted a comment here:

#19077 (comment)

that brings some clarity on this topic. In a nutshell, with 1.17 a significant amount of code was modified to:

  • prevent that kind of problem
  • facilitate the diagnostic of that kind of problem from the admin panel

I build 1.17 dev and my PR that was previously stuck is no longer stuck 🥳

EDIT: There is one error in the log.
patch_unmerged.go:131:unmergedFIles() [E] Unable to run ls-files -u -z! Error: git ls-files -u -z: signal: interrupt

@stu1811
Copy link
Author

stu1811 commented May 31, 2022

Sorry for the double post. One of my PRs is stuck with 1.17.0+dev-634-ge31c6166e.

Here is the stack trace

<>GET:/FOO/BAR/pulls/1234 (dead process)
<> database/sql.(*DB).connectionCleaner graceful-lifecycle with-hammer process-type request

- runtime.gopark

/usr/local/go/src/runtime/proc.go:366

- runtime.selectgo

/usr/local/go/src/runtime/select.go:327

- database.sql.(*DB).connectionCleaner

/usr/local/go/src/database/sql/sql.go:1068

Another dead process

<GET> /FOO/BAR/Issues:1234/content-history/overview?_csrf=.... (dead process)
<github.com/go-sql-driver/mysql.(*mysqlConn).startWatcher.func1 graceful-lifecycle with-hammer process-type request
- runtime.gopark

/usr/local/go/src/runtime/proc.go:366

- runtime.selectgo

/usr/local/go/src/runtime/select.go:327

- github.com/go-sql-driver/mysql.(*mysqlConn).startWatcher.func1

/home/stu/go/pkg/mod/github.com/go-sql-driver@v1.6.0/connection.go:614

@zeripath
Copy link
Contributor

@stu1811 Let me deal with these last two comments first:

EDIT: There is one error in the log.

#19818 (comment)

EDIT: There is one error in the log.
patch_unmerged.go:131:unmergedFIles() [E] Unable to run ls-files -u -z! Error: git ls-files -u -z: signal: interrupt

signal: interrupt implies that something has killed the os process running git ls-files -u -z - either the parent context has been killed - e.g. you killed the process in the table or you cancelled a cherry-pick request - or... possibly it timed out.

There would be more interesting logs above/around this if there was a timeout. But a single logline isn't really enough to help us to help you.

Go-routines labelled with (dead process)

#19818 (comment)

Goroutines labelled (dead process) are not necessarily a problem. They do need examination but this label does not mean what you think it means.

We label each goroutine created by Gitea with a marker of where it was created.

When requests come in we label its goroutine with a pprof label to trace any goroutines it creates and the goroutine itself with that request.

Now that in these cases the request has caused a new longlived DB connection to occur and because that code/library does not relabel its goroutines it is still associated with the request.

In the meantime the request has been dealt with and its process closed but the DB connection and its goroutines remain - hence their association with the "dead" process. This is annoying but not a problem.

Stacktraces

database.sql.(*DB).connectionCleaner /usr/local/go/src/database/sql/sql.go:1068

<>GET:/FOO/BAR/pulls/1234 (dead process)
<> database/sql.(*DB).connectionCleaner graceful-lifecycle with-hammer process-type request

- runtime.gopark

/usr/local/go/src/runtime/proc.go:366

- runtime.selectgo

/usr/local/go/src/runtime/select.go:327

- database.sql.(*DB).connectionCleaner

/usr/local/go/src/database/sql/sql.go:1068

This is simply related to the DB connection pool cleaner as you would see if you looked at the code. This is not a problem.

github.com/go-sql-driver/mysql.(*mysqlConn).startWatcher.func1 /home/stu/go/pkg/mod/github.com/go-sql-driver@v1.6.0/connection.go:614

<GET> /FOO/BAR/Issues:1234/content-history/overview?_csrf=.... (dead process)
<github.com/go-sql-driver/mysql.(*mysqlConn).startWatcher.func1 graceful-lifecycle with-hammer process-type request
- runtime.gopark

/usr/local/go/src/runtime/proc.go:366

- runtime.selectgo

/usr/local/go/src/runtime/select.go:327

- github.com/go-sql-driver/mysql.(*mysqlConn).startWatcher.func1

/home/stu/go/pkg/mod/github.com/go-sql-driver@v1.6.0/connection.go:614

Again an internal goroutine related to DB connection management.

Hanging Git Processes (or How to use the stacktraces tab correctly to identify a hanging git processes)

If there are "hanging" git OS processes these will be attached to very likely non-dead Gitea processes & requests. The associated process will have a goroutine labelled os/exec.Start() or something like that.

To truly identify a hanging git os process the stacktrace should be there for a while AND the process should not die after clicking on the 🗑️ icon.

If you are concerned that there are hanging processes - give us the whole trace unless you really know what you're looking at.

The webpage output is fine but gitea manager processes --stacktraces will emit a text output of this data.

How to help us with " One of my PRs is stuck with 1.17.0+dev-634-ge31c6166e."

I need logs.

I'm gonna need to read the rest of this thread as I've been very busy recently and I've missed it however you've provided us with just too little information to help you.

I need logs.

I don't understand why we have to repeatedly paste this: https://docs.gitea.io/en-us/logging-configuration/#debugging-problems

and copy and paste this:

[database]
LOG_SQL = false ; SQL logs are rarely helpful unless we specifically ask for them

...

[log]
MODE = console
LEVEL = debug ; please set the level to debug when we are debugging a problem
ROUTER = console
COLORIZE = false ; this can be true if you can strip out the ansi coloring
ENABLE_SSH_LOG = true ; shows logs related to git over SSH.

When you open a bug report the template very clearly asks you to do this. What can we do to make this clearer?

Do we need to put this in huge letters?

Can you please give me some logs after you've pushed a change and the pr has got stuck?

@zeripath

This comment was marked as off-topic.

@zeripath

This comment was marked as off-topic.

@zeripath

This comment was marked as off-topic.

@stu1811
Copy link
Author

stu1811 commented May 31, 2022

OK @stu1811 if you're getting the same problem on your local instance your problem is that your docker version is too old.

See:

#18050

See: https://wiki.alpinelinux.org/wiki/Release_Notes_for_Alpine_3.14.0 & https://about.gitlab.com/blog/2021/08/26/its-time-to-upgrade-docker-engine/

I actually don't see it locally since I run it bare metal. I ran into this issue while trying to reproduce the issue in the OP on the demo site.

@singuliere
Copy link
Contributor

Do we need to put this in huge letters?

You are looking at the problem in the wrong way.

If someone has a service contract that guarantees the confidentiality of the data won't be exposed publicly, they will be in a position to diagnose the problem. You could be that person. Otherwise every person reporting a bug is compelled to edit what they think are the relevant parts of the logs and the database content to not expose confidential information to third parties that are not trusted. And the selection they make is bound to hide the relevant information most of the time.

@zeripath
Copy link
Contributor

@singuliere I'm talking about repeated comments like: #19818 (comment) - this happens all the time.

We can't help if we don't see any logs and it's crazy the number of times we have to post the same app.ini section from the linked document. If the issue template is not clear we need to make it clearer.


I can suggest a slight improvement on the app.ini suggestion above:

[database]
LOG_SQL = false ; SQL logs are rarely helpful unless we specifically ask for them

...

[log]
MODE = console, traceconsole
LEVEL = debug ; please set the level to debug when we are debugging a problem
ROUTER = console
COLORIZE = false ; this can be true if you can strip out the ansi coloring
ENABLE_SSH_LOG = true ; shows logs related to git over SSH.

[log.traceconsole]
MODE=console
LEVEL=trace
EXPRESSION=services/pull

Then at least you'd see some messages like:

[T] PullRequest[%d].testPatch (patchPath): %s

which could be used to trace the patch testing process.

@singuliere
Copy link
Contributor

@singuliere I'm talking about repeated comments like: #19818 (comment) - this happens all the time.

Oh, I see. In that case maybe moving this from point 6. in the list to point 1. in the template would help ?

This is off topic though, sorry for the noise.

@stu1811
Copy link
Author

stu1811 commented Jul 26, 2022

We've run 1.16.8 for a while now and the issues seems much better. Sometimes PRs do get stuck for about 30 minutes but eventually do recover and the update branch/merge buttons become available. One thing I noticed is while stuck some PRs have a red merge arrow and others have a yellow merge arrow. I'm not sure if that's of any significance.

@songchenghao
Copy link

songchenghao commented Feb 2, 2023

@zeripath when there is commit status check, this appears.
Is there any works number limit to do commit status check?Our system can have multiple PRs concurrently, and The commit status check of these merge requests will last about ten minutes...
sometimes there is the log below.
2023/01/30 15:24:31 .../queue/workerpool.go:157:pushBoost() [W] WorkerPool: 8 (for repo_stats_update-channel) Channel blocked for 1s - adding 1 temporary workers for 5m0s, block timeout now 2s
2023/01/31 21:59:23 .../queue/workerpool.go:112:zeroBoost() [D] WorkerPool: 14 (for pr_patch_checker-channel) has zero workers - adding 1 temporary workers for 5m0s

@MoutonSanglant
Copy link

MoutonSanglant commented Mar 1, 2023

We have the same issue since a few days on Gitea v1.18.3. Some issues get stuck with "Merge conflict checking in progress. Try again in a few minutes" and the only way we found to unlock it is to close the PR and open a new one.

As you can see in our logs, there is this line which comes repeatedely many times every seconds. The only way we found to make this error disapear is to remove the /data/gitea/tmp/local-repo/pull.git* folder. I don't think it's a good idea and I would prefer to have an official solution.

2023/03/01 10:07:05 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
Logs
Server listening on :: port 22.
Server listening on 0.0.0.0 port 22.
2023/03/01 10:07:00 cmd/web.go:106:runWeb() [I] Starting Gitea on PID: 17
2023/03/01 10:07:00 cmd/web.go:160:runWeb() [I] Global init
2023/03/01 10:07:00 routers/init.go:116:GlobalInitInstalled() [I] Git Version: 2.36.4, Wire Protocol Version 2 Enabled (home: /data/gitea/home)
2023/03/01 10:07:00 routers/init.go:117:GlobalInitInstalled() [I] AppPath: /usr/local/bin/gitea
2023/03/01 10:07:00 routers/init.go:118:GlobalInitInstalled() [I] AppWorkPath: /app/gitea
2023/03/01 10:07:00 routers/init.go:119:GlobalInitInstalled() [I] Custom path: /data/gitea
2023/03/01 10:07:00 routers/init.go:120:GlobalInitInstalled() [I] Log path: /data/gitea/log
2023/03/01 10:07:00 routers/init.go:121:GlobalInitInstalled() [I] Configuration file: /data/gitea/conf/app.ini
2023/03/01 10:07:00 routers/init.go:122:GlobalInitInstalled() [I] Run Mode: Prod
2023/03/01 10:07:00 ...dules/setting/log.go:288:newLogService() [I] Gitea v1.18.3 built with GNU Make 4.3, go1.19.5 : bindata, timetzdata, sqlite, sqlite_unlock_notify
2023/03/01 10:07:00 ...dules/setting/log.go:335:newLogService() [I] Gitea Log Mode: Console(Console:debug)
2023/03/01 10:07:00 ...dules/setting/log.go:249:generateNamedLogger() [I] Router Log: Console(console:debug)
2023/03/01 10:07:00 ...les/setting/cache.go:76:newCacheService() [I] Cache Service Enabled
2023/03/01 10:07:00 ...les/setting/cache.go:91:newCacheService() [I] Last Commit Cache Service Enabled
2023/03/01 10:07:00 ...s/setting/session.go:73:newSessionService() [I] Session Service Enabled
2023/03/01 10:07:00 ...s/setting/setting.go:613:deprecatedSetting() [E] Deprecated fallback `[mailer]` `MAILER_TYPE` present. Use `[mailer]` `PROTOCOL` instead. This fallback will be removed in v1.19.0
2023/03/01 10:07:00 ...s/setting/setting.go:613:deprecatedSetting() [E] Deprecated fallback `[mailer]` `HOST` present. Use `[mailer]` `SMTP_ADDR` instead. This fallback will be removed in v1.19.0
2023/03/01 10:07:00 ...s/setting/setting.go:613:deprecatedSetting() [E] Deprecated fallback `[mailer]` `IS_TLS_ENABLED` present. Use `[mailer]` `PROTOCOL` instead. This fallback will be removed in v1.19.0
2023/03/01 10:07:00 ...es/setting/mailer.go:238:parseMailerConfig() [I] Mail Service Enabled
2023/03/01 10:07:00 ...s/storage/storage.go:176:initAttachments() [I] Initialising Attachment storage with type: 
2023/03/01 10:07:00 ...les/storage/local.go:46:NewLocalStorage() [I] Creating new Local Storage at /data/gitea/attachments
2023/03/01 10:07:00 ...s/storage/storage.go:170:initAvatars() [I] Initialising Avatar storage with type: 
2023/03/01 10:07:00 ...les/storage/local.go:46:NewLocalStorage() [I] Creating new Local Storage at /data/gitea/avatars
2023/03/01 10:07:00 ...s/storage/storage.go:188:initRepoAvatars() [I] Initialising Repository Avatar storage with type: 
2023/03/01 10:07:00 ...les/storage/local.go:46:NewLocalStorage() [I] Creating new Local Storage at /data/gitea/repo-avatars
2023/03/01 10:07:00 ...s/storage/storage.go:182:initLFS() [I] Initialising LFS storage with type: 
2023/03/01 10:07:00 ...les/storage/local.go:46:NewLocalStorage() [I] Creating new Local Storage at /data/git/lfs
2023/03/01 10:07:00 ...s/storage/storage.go:194:initRepoArchives() [I] Initialising Repository Archive storage with type: 
2023/03/01 10:07:00 ...les/storage/local.go:46:NewLocalStorage() [I] Creating new Local Storage at /data/gitea/repo-archive
2023/03/01 10:07:00 ...s/storage/storage.go:200:initPackages() [I] Initialising Packages storage with type: 
2023/03/01 10:07:00 ...les/storage/local.go:46:NewLocalStorage() [I] Creating new Local Storage at /data/gitea/packages
2023/03/01 10:07:00 ...ueue_disk_channel.go:159:Run() [D] [63ff15b4-20] PersistableChannelQueue: mail Starting
2023/03/01 10:07:00 ...ueue_disk_channel.go:194:Run() [D] [63ff15b4-20] PersistableChannelQueue: mail Skipping running the empty level queue
2023/03/01 10:07:00 ...ue/queue_bytefifo.go:335:Shutdown() [D] [63ff15b4-20] level: mail-level Shutdown
2023/03/01 10:07:00 ...ueue_disk_channel.go:159:Run() [D] [63ff15b4-22] PersistableChannelQueue: notification-service Starting
2023/03/01 10:07:00 ...ueue_disk_channel.go:194:Run() [D] [63ff15b4-22] PersistableChannelQueue: notification-service Skipping running the empty level queue
2023/03/01 10:07:00 ...ue/queue_bytefifo.go:335:Shutdown() [D] [63ff15b4-22] level: notification-service-level Shutdown
2023/03/01 10:07:00 ...ueue_disk_channel.go:188:Run() [D] [63ff15b4-24] PersistableChannelUniqueQueue: repo-archive Starting
2023/03/01 10:07:00 ...ueue_disk_channel.go:223:Run() [D] [63ff15b4-24] PersistableChannelUniqueQueue: repo-archive Skipping running the empty level queue
2023/03/01 10:07:00 ...ue/queue_bytefifo.go:335:Shutdown() [D] [63ff15b4-24] unique-level: repo-archive-level Shutdown
2023/03/01 10:07:00 routers/init.go:140:GlobalInitInstalled() [I] SQLite3 support is enabled
2023/03/01 10:07:00 routers/common/db.go:20:InitDBEngine() [I] Beginning ORM engine initialization.
2023/03/01 10:07:00 routers/common/db.go:27:InitDBEngine() [I] ORM engine initialization attempt #1/10...
2023/03/01 10:07:00 cmd/web.go:163:runWeb() [I] PING DATABASE mysql
2023/03/01 10:07:00 routers/init.go:145:GlobalInitInstalled() [W] Table system_setting Column version db default is , struct default is 1
2023/03/01 10:07:00 routers/init.go:145:GlobalInitInstalled() [W] Table gpg_key Column content db nullable is true, struct nullable is false
2023/03/01 10:07:00 routers/init.go:145:GlobalInitInstalled() [W] Table public_key Column content db nullable is true, struct nullable is false
2023/03/01 10:07:00 routers/init.go:145:GlobalInitInstalled() [W] Table project column board_type db type is INT(10) UNSIGNED, struct type is INT UNSIGNED
2023/03/01 10:07:00 routers/init.go:145:GlobalInitInstalled() [W] Table project column type db type is INT(10) UNSIGNED, struct type is INT UNSIGNED
2023/03/01 10:07:01 routers/init.go:145:GlobalInitInstalled() [W] Table hook_task has column repo_id but struct has not related field
2023/03/01 10:07:01 routers/init.go:146:GlobalInitInstalled() [I] ORM engine initialization successful!
2023/03/01 10:07:01 ...ueue_disk_channel.go:159:Run() [D] [63ff15b5] PersistableChannelQueue: push_update Starting
2023/03/01 10:07:01 ...ueue_disk_channel.go:194:Run() [D] [63ff15b5] PersistableChannelQueue: push_update Skipping running the empty level queue
2023/03/01 10:07:01 ...ue/queue_bytefifo.go:335:Shutdown() [D] [63ff15b5] level: push_update-level Shutdown
2023/03/01 10:07:01 ...er/issues/indexer.go:174:func2() [I] [63ff15b5-3] PID 17: Initializing Issue Indexer: bleve
2023/03/01 10:07:01 ...exer/code/indexer.go:187:func3() [I] [63ff15b5-5] PID: 17 Initializing Repository Indexer at: /data/gitea/indexers/repos.bleve
2023/03/01 10:07:01 ...ueue_disk_channel.go:188:Run() [D] [63ff15b5-8] PersistableChannelUniqueQueue: repo_stats_update Starting
2023/03/01 10:07:01 ...ueue_disk_channel.go:223:Run() [D] [63ff15b5-8] PersistableChannelUniqueQueue: repo_stats_update Skipping running the empty level queue
2023/03/01 10:07:01 ...ue/queue_bytefifo.go:335:Shutdown() [D] [63ff15b5-8] unique-level: repo_stats_update-level Shutdown
2023/03/01 10:07:01 ...xer/stats/indexer.go:39:populateRepoIndexer() [I] Populating the repo stats indexer with existing repositories
2023/03/01 10:07:01 ...ueue_disk_channel.go:188:Run() [D] [63ff15b5-10] PersistableChannelUniqueQueue: mirror Starting
2023/03/01 10:07:01 ...ueue_disk_channel.go:223:Run() [D] [63ff15b5-10] PersistableChannelUniqueQueue: mirror Skipping running the empty level queue
2023/03/01 10:07:01 ...ue/queue_bytefifo.go:335:Shutdown() [D] [63ff15b5-10] unique-level: mirror-level Shutdown
2023/03/01 10:07:01 ...ueue_disk_channel.go:188:Run() [D] [63ff15b5-12] PersistableChannelUniqueQueue: webhook_sender Starting
2023/03/01 10:07:01 ...ueue_disk_channel.go:223:Run() [D] [63ff15b5-12] PersistableChannelUniqueQueue: webhook_sender Skipping running the empty level queue
2023/03/01 10:07:01 ...ue/queue_bytefifo.go:335:Shutdown() [D] [63ff15b5-12] unique-level: webhook_sender-level Shutdown
2023/03/01 10:07:01 ...xer/stats/indexer.go:85:populateRepoIndexer() [I] Done (re)populating the repo stats indexer with existing repositories
2023/03/01 10:07:01 ...er/issues/indexer.go:204:func2() [D] [63ff15b5-3] Created Bleve Indexer
2023/03/01 10:07:01 ...er/issues/indexer.go:270:func3() [I] [63ff15b5-3] Issue Indexer Initialization took 4.196298ms
2023/03/01 10:07:01 ...ue/queue_bytefifo.go:159:Run() [D] [63ff15b5-4] level: issue_indexer Starting
2023/03/01 10:07:01 ...exer/code/indexer.go:271:func4() [I] [63ff15b5-5] Repository Indexer Initialization took 8.20507ms
2023/03/01 10:07:01 ...ueue_disk_channel.go:188:Run() [D] [63ff15b5-6] PersistableChannelUniqueQueue: code_indexer Starting
2023/03/01 10:07:01 ...ueue_disk_channel.go:223:Run() [D] [63ff15b5-6] PersistableChannelUniqueQueue: code_indexer Skipping running the empty level queue
2023/03/01 10:07:01 ...ue/queue_bytefifo.go:335:Shutdown() [D] [63ff15b5-6] unique-level: code_indexer-level Shutdown
2023/03/01 10:07:01 ...ueue_disk_channel.go:188:Run() [D] [63ff15b5-14] PersistableChannelUniqueQueue: pr_patch_checker Starting
2023/03/01 10:07:01 ...ueue_disk_channel.go:223:Run() [D] [63ff15b5-14] PersistableChannelUniqueQueue: pr_patch_checker Skipping running the empty level queue
2023/03/01 10:07:01 ...ue/queue_bytefifo.go:335:Shutdown() [D] [63ff15b5-14] unique-level: pr_patch_checker-level Shutdown
2023/03/01 10:07:01 ...ueue_disk_channel.go:188:Run() [D] [63ff15b5-16] PersistableChannelUniqueQueue: pr_auto_merge Starting
2023/03/01 10:07:01 ...ueue_disk_channel.go:223:Run() [D] [63ff15b5-16] PersistableChannelUniqueQueue: pr_auto_merge Skipping running the empty level queue
2023/03/01 10:07:01 ...ue/queue_bytefifo.go:335:Shutdown() [D] [63ff15b5-16] unique-level: pr_auto_merge-level Shutdown
2023/03/01 10:07:01 ...ueue_disk_channel.go:159:Run() [D] [63ff15b5-18] PersistableChannelQueue: task Starting
2023/03/01 10:07:01 ...ueue_disk_channel.go:194:Run() [D] [63ff15b5-18] PersistableChannelQueue: task Skipping running the empty level queue
2023/03/01 10:07:01 ...ue/queue_bytefifo.go:335:Shutdown() [D] [63ff15b5-18] level: task-level Shutdown
2023/03/01 10:07:01 .../queue/workerpool.go:138:zeroBoost() [D] WorkerPool: 26 (for pr_patch_checker-channel) has zero workers - adding 1 temporary workers for 5m0s
2023/03/01 10:07:01 ...rvices/cron/tasks.go:148:RegisterTask() [D] [63ff15b5-21] Registering task: update_mirrors
2023/03/01 10:07:01 ...rvices/cron/tasks.go:148:RegisterTask() [D] [63ff15b5-21] Registering task: repo_health_check
2023/03/01 10:07:01 ...rvices/cron/tasks.go:148:RegisterTask() [D] [63ff15b5-21] Registering task: check_repo_stats
2023/03/01 10:07:01 ...rvices/cron/tasks.go:148:RegisterTask() [D] [63ff15b5-21] Registering task: archive_cleanup
2023/03/01 10:07:01 ...rvices/cron/tasks.go:148:RegisterTask() [D] [63ff15b5-21] Registering task: sync_external_users
2023/03/01 10:07:01 ...rvices/cron/tasks.go:148:RegisterTask() [D] [63ff15b5-21] Registering task: deleted_branches_cleanup
2023/03/01 10:07:01 ...rvices/cron/tasks.go:148:RegisterTask() [D] [63ff15b5-21] Registering task: update_migration_poster_id
2023/03/01 10:07:01 ...rvices/cron/tasks.go:148:RegisterTask() [D] [63ff15b5-21] Registering task: cleanup_hook_task_table
2023/03/01 10:07:01 ...rvices/cron/tasks.go:148:RegisterTask() [D] [63ff15b5-21] Registering task: cleanup_packages
2023/03/01 10:07:01 ...rvices/cron/tasks.go:148:RegisterTask() [D] [63ff15b5-21] Registering task: delete_inactive_accounts
2023/03/01 10:07:01 ...rvices/cron/tasks.go:148:RegisterTask() [D] [63ff15b5-21] Registering task: delete_repo_archives
2023/03/01 10:07:01 ...rvices/cron/tasks.go:148:RegisterTask() [D] [63ff15b5-21] Registering task: git_gc_repos
2023/03/01 10:07:01 ...rvices/cron/tasks.go:148:RegisterTask() [D] [63ff15b5-21] Registering task: resync_all_sshkeys
2023/03/01 10:07:01 ...rvices/cron/tasks.go:148:RegisterTask() [D] [63ff15b5-21] Registering task: resync_all_sshprincipals
2023/03/01 10:07:01 ...rvices/cron/tasks.go:148:RegisterTask() [D] [63ff15b5-21] Registering task: resync_all_hooks
2023/03/01 10:07:01 ...rvices/cron/tasks.go:148:RegisterTask() [D] [63ff15b5-21] Registering task: reinit_missing_repos
2023/03/01 10:07:01 ...rvices/cron/tasks.go:148:RegisterTask() [D] [63ff15b5-21] Registering task: delete_missing_repos
2023/03/01 10:07:01 ...rvices/cron/tasks.go:148:RegisterTask() [D] [63ff15b5-21] Registering task: delete_generated_repository_avatars
2023/03/01 10:07:01 ...rvices/cron/tasks.go:148:RegisterTask() [D] [63ff15b5-21] Registering task: delete_old_actions
2023/03/01 10:07:01 ...rvices/cron/tasks.go:148:RegisterTask() [D] [63ff15b5-21] Registering task: update_checker
2023/03/01 10:07:01 ...rvices/cron/tasks.go:148:RegisterTask() [D] [63ff15b5-21] Registering task: delete_old_system_notices
2023/03/01 10:07:01 routers/init.go:179:NormalRoutes() [D] Creating static HTML Renderer
2023/03/01 10:07:01 cmd/web.go:220:listen() [I] [63ff15b5-28] Listen: https://0.0.0.0:3000
2023/03/01 10:07:01 cmd/web.go:224:listen() [I] [63ff15b5-28] AppURL(ROOT_URL): https://git.blackflag.synology.me/
2023/03/01 10:07:01 cmd/web.go:227:listen() [I] [63ff15b5-28] LFS server enabled
2023/03/01 10:07:01 cmd/web.go:69:runHTTPRedirector() [I] [63ff15b5-29] Redirecting: 0.0.0.0:3080 to https://git.blackflag.synology.me
2023/03/01 10:07:01 ...s/graceful/server.go:62:NewServer() [I] [63ff15b5-29] Starting new HTTP Redirector server: tcp:0.0.0.0:3080 on PID: 17
2023/03/01 10:07:01 ...s/graceful/server.go:75:func1() [D] [63ff15b5-29] Starting server on tcp:0.0.0.0:3080 (PID: 17)
2023/03/01 10:07:01 ...s/graceful/server.go:62:NewServer() [I] [63ff15b5-28] Starting new Web server: tcp:0.0.0.0:3000 on PID: 17
2023/03/01 10:07:01 ...s/graceful/server.go:75:func1() [D] [63ff15b5-28] Starting server on tcp:0.0.0.0:3000 (PID: 17)
2023/03/01 10:07:01 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= init
2023/03/01 10:07:01 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= remote add -t development -m development origin /data/git/repositories/blackflag/orphan-age.git
2023/03/01 10:07:01 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= fetch origin --no-tags -- development:base development:original_base
2023/03/01 10:07:01 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= symbolic-ref HEAD refs/heads/base
2023/03/01 10:07:01 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= remote add head_repo /data/git/repositories/blackflag/orphan-age.git
2023/03/01 10:07:01 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= fetch --no-tags head_repo refs/heads/feature/ci:tracking
2023/03/01 10:07:01 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= rev-parse
2023/03/01 10:07:01 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= merge-base -- base tracking
2023/03/01 10:07:01 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= cat-file --batch-check
2023/03/01 10:07:01 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= cat-file --batch
2023/03/01 10:07:01 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= read-tree -m 8a1a91d08d1990d415462726006f9182099ffad1 base tracking
2023/03/01 10:07:01 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= ls-files -u -z
2023/03/01 10:07:01 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:02 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:02 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:02 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:02 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:02 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:02 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:02 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:02 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:02 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:02 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:02 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:02 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:02 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:03 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:03 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:03 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:03 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:03 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:03 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:03 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:03 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:03 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:03 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:03 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:03 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:03 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:03 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:04 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:04 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:04 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:04 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:04 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:04 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:04 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:04 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:04 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:04 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:04 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:04 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:04 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:05 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:05 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:05 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:05 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:05 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:05 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:05 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:05 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:05 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:05 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:05 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:05 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:05 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:06 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:06 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:06 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:06 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:06 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:06 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:06 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:06 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:06 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:06 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:06 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:06 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:06 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:07 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:07 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:07 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:07 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:07 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:07 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:07 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:07 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:07 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:07 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:07 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:07 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:07 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:08 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:08 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:08 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:08 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:08 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:08 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:08 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:08 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:08 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:08 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:08 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:08 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:08 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:09 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:09 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:09 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:09 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:09 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:09 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:09 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:09 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:09 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:09 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:09 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:09 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:09 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:09 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:10 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:10 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:10 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:10 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:10 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:10 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:10 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:10 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:10 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:10 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:10 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:10 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:10 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:11 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:11 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:11 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:11 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:11 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:11 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:11 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:11 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:11 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:11 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:11 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:11 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:11 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:12 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:12 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:12 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:12 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:12 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:12 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:12 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:12 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:12 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:12 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:12 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:12 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:12 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:13 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:13 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:13 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:13 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:13 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:13 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:13 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:13 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:13 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:13 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:13 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:13 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:13 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:14 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:14 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:14 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:14 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:14 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:14 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:14 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:14 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:14 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:14 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:14 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:14 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:14 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:15 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:15 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:15 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:15 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:15 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:15 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:15 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:15 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:15 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:15 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:15 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:15 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:15 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:16 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:16 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:16 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:16 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:16 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:16 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:16 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:16 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:16 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:16 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:16 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:16 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:16 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:17 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:17 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:17 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:17 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:17 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:17 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:17 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:17 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:17 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:17 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:17 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:17 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:17 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:18 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:18 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:18 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:18 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:18 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:18 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:18 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:18 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:18 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:18 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:18 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:18 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:18 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:19 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:19 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:19 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:19 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:19 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:19 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:19 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:19 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:19 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:19 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:19 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:19 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:19 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:20 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:20 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:20 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:20 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:20 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:20 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:20 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:20 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:20 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:20 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:20 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:20 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:20 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:21 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:21 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:21 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:21 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:21 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:21 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:21 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:21 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:21 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:21 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:21 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:21 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:21 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:22 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:22 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:22 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:22 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:22 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:22 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:22 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:22 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:22 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:22 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:22 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:22 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:22 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:23 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:23 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:23 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:23 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:23 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:23 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:23 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:23 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:23 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:23 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:23 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:23 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:23 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:23 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:24 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:24 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:24 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:24 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:24 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:24 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:24 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:24 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:24 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:24 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:24 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:24 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:24 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:25 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:25 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:25 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:25 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:25 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:25 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:25 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:25 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:25 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:25 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:25 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:25 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:25 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:26 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:26 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:26 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:26 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:26 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:26 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:26 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:26 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:26 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:26 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:26 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:26 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:26 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:27 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:27 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:27 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:27 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:27 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:27 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:27 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:27 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:27 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:27 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:27 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:27 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:27 ...dules/git/command.go:215:Run() [D] [63ff15b5-31] /data/gitea/tmp/local-repo/pull.git733697247: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= write-tree
2023/03/01 10:07:28 ...dules/git/command.go:215:Run() [D] [63ff15d0-2] /data/gitea/tmp/local-repo/pull.git3204818587: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= init
2023/03/01 10:07:28 ...dules/git/command.go:215:Run() [D] [63ff15d0-2] /data/gitea/tmp/local-repo/pull.git3204818587: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= remote add -t development -m development origin /data/git/repositories/blackflag/orphan-age.git
2023/03/01 10:07:28 ...dules/git/command.go:215:Run() [D] [63ff15d0-2] /data/gitea/tmp/local-repo/pull.git3204818587: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= fetch origin --no-tags -- development:base development:original_base
2023/03/01 10:07:28 ...dules/git/command.go:215:Run() [D] [63ff15d0-2] /data/gitea/tmp/local-repo/pull.git3204818587: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= symbolic-ref HEAD refs/heads/base
2023/03/01 10:07:28 ...dules/git/command.go:215:Run() [D] [63ff15d0-2] /data/gitea/tmp/local-repo/pull.git3204818587: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= remote add head_repo /data/git/repositories/blackflag/orphan-age.git
2023/03/01 10:07:28 ...dules/git/command.go:215:Run() [D] [63ff15d0-2] /data/gitea/tmp/local-repo/pull.git3204818587: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= fetch --no-tags head_repo refs/heads/feature/refacto-camera-controls:tracking
2023/03/01 10:07:28 ...dules/git/command.go:215:Run() [D] [63ff15d0-2] /data/gitea/tmp/local-repo/pull.git3204818587: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= rev-parse
2023/03/01 10:07:28 ...dules/git/command.go:215:Run() [D] [63ff15d0-2] /data/gitea/tmp/local-repo/pull.git3204818587: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= merge-base -- base tracking
2023/03/01 10:07:28 ...dules/git/command.go:215:Run() [D] [63ff15d0-2] /data/gitea/tmp/local-repo/pull.git3204818587: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= cat-file --batch
2023/03/01 10:07:28 ...dules/git/command.go:215:Run() [D] [63ff15d0-2] /data/gitea/tmp/local-repo/pull.git3204818587: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= cat-file --batch-check
2023/03/01 10:07:28 ...dules/git/command.go:215:Run() [D] [63ff15d0-2] /data/gitea/tmp/local-repo/pull.git3204818587: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= read-tree -m 2db65002609852eeceb187e1e3d2e9572e297a75 base tracking
2023/03/01 10:07:28 ...dules/git/command.go:215:Run() [D] [63ff15d0-2] /data/gitea/tmp/local-repo/pull.git3204818587: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= ls-files -u -z
2023/03/01 10:07:28 ...dules/git/command.go:215:Run() [D] [63ff15d0-2] /data/gitea/tmp/local-repo/pull.git3204818587: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= unpack-file 6e8607c129bb00d41fd2852bde53b181ec80057d
2023/03/01 10:07:28 ...dules/git/command.go:215:Run() [D] [63ff15d0-2] /data/gitea/tmp/local-repo/pull.git3204818587: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= unpack-file a7c3e1fc067f66b33809ad41359311554465f777
2023/03/01 10:07:28 ...dules/git/command.go:215:Run() [D] [63ff15d0-2] /data/gitea/tmp/local-repo/pull.git3204818587: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= unpack-file 46d92e24dbcbfebcc82e7a1e04fa1ce0b6c53afb
2023/03/01 10:07:28 ...dules/git/command.go:215:Run() [D] [63ff15d0-2] /data/gitea/tmp/local-repo/pull.git3204818587: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= merge-file /data/gitea/tmp/local-repo/pull.git3204818587/.merge_file_kkpGgl .merge_file_KPJODh .merge_file_OJEJpi
2023/03/01 10:07:28 ...dules/git/command.go:215:Run() [D] [63ff15d0-2] /data/gitea/tmp/local-repo/pull.git3204818587: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:28 ...dules/git/command.go:215:Run() [D] [63ff15d0-2] /data/gitea/tmp/local-repo/pull.git3204818587: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:28 ...dules/git/command.go:215:Run() [D] [63ff15d0-2] /data/gitea/tmp/local-repo/pull.git3204818587: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= unpack-file 5cf575bd599bded430f38145216633a189496de6
2023/03/01 10:07:28 ...dules/git/command.go:215:Run() [D] [63ff15d0-2] /data/gitea/tmp/local-repo/pull.git3204818587: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= unpack-file 077f079769f2b39a7e1fd12e1fbd11f1b040f183
2023/03/01 10:07:28 ...dules/git/command.go:215:Run() [D] [63ff15d0-2] /data/gitea/tmp/local-repo/pull.git3204818587: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= unpack-file 5958af7ee26280faf4f4c0c4f69448774129d86d
2023/03/01 10:07:28 ...dules/git/command.go:215:Run() [D] [63ff15d0-2] /data/gitea/tmp/local-repo/pull.git3204818587: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= merge-file /data/gitea/tmp/local-repo/pull.git3204818587/.merge_file_boCjag .merge_file_FhNdeA .merge_file_HlIDnH
2023/03/01 10:07:28 ...dules/git/command.go:215:Run() [D] [63ff15d0-2] /data/gitea/tmp/local-repo/pull.git3204818587: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= hash-object -w --path Assets/OrphanEngine/UI/Scripts/Avatars/AvatarOrphan.cs /data/gitea/tmp/local-repo/pull.git3204818587/.merge_file_boCjag
2023/03/01 10:07:28 ...dules/git/command.go:215:Run() [D] [63ff15d0-2] /data/gitea/tmp/local-repo/pull.git3204818587: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --add --replace --cacheinfo 100644 1bf11bf5659d5d8b58df8cb19e9abbf3a2c02207 Assets/OrphanEngine/UI/Scripts/Avatars/AvatarOrphan.cs
2023/03/01 10:07:28 ...dules/git/command.go:215:Run() [D] [63ff15d0-2] /data/gitea/tmp/local-repo/pull.git3204818587: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:29 ...dules/git/command.go:215:Run() [D] [63ff15d0-2] /data/gitea/tmp/local-repo/pull.git3204818587: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:29 ...dules/git/command.go:215:Run() [D] [63ff15d0-2] /data/gitea/tmp/local-repo/pull.git3204818587: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:29 ...dules/git/command.go:215:Run() [D] [63ff15d0-2] /data/gitea/tmp/local-repo/pull.git3204818587: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:29 ...dules/git/command.go:215:Run() [D] [63ff15d0-2] /data/gitea/tmp/local-repo/pull.git3204818587: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:29 ...dules/git/command.go:215:Run() [D] [63ff15d0-2] /data/gitea/tmp/local-repo/pull.git3204818587: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:29 ...dules/git/command.go:215:Run() [D] [63ff15d0-2] /data/gitea/tmp/local-repo/pull.git3204818587: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:29 ...dules/git/command.go:215:Run() [D] [63ff15d0-2] /data/gitea/tmp/local-repo/pull.git3204818587: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:29 ...dules/git/command.go:215:Run() [D] [63ff15d0-2] /data/gitea/tmp/local-repo/pull.git3204818587: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:29 ...dules/git/command.go:215:Run() [D] [63ff15d0-2] /data/gitea/tmp/local-repo/pull.git3204818587: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:30 ...dules/git/command.go:215:Run() [D] [63ff15d0-2] /data/gitea/tmp/local-repo/pull.git3204818587: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:30 ...dules/git/command.go:215:Run() [D] [63ff15d0-2] /data/gitea/tmp/local-repo/pull.git3204818587: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:30 ...dules/git/command.go:215:Run() [D] [63ff15d0-2] /data/gitea/tmp/local-repo/pull.git3204818587: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:30 ...dules/git/command.go:215:Run() [D] [63ff15d0-2] /data/gitea/tmp/local-repo/pull.git3204818587: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:30 ...dules/git/command.go:215:Run() [D] [63ff15d0-2] /data/gitea/tmp/local-repo/pull.git3204818587: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info
2023/03/01 10:07:30 ...dules/git/command.go:215:Run() [D] [63ff15d0-2] /data/gitea/tmp/local-repo/pull.git3204818587: /usr/bin/git -c protocol.version=2 -c credential.helper= -c filter.lfs.required= -c filter.lfs.smudge= -c filter.lfs.clean= update-index --remove -z --index-info

I never dived into Gitea codebase and my asumption may be all wrong, but I suspect that some data got corrupted in the database because the docker instance got killed while doing a big operation, and then it tries to start the operation over and over, but fails to do it.

The issue started last week after someone tried to open a very big PR ( ~12,000 files changed, ~150,000 deletions).

We really need to fix this issue because merge conflitct checking takes a very long time (from 5 minutes to half an hour) everytime we open a new PR.

Configuration of logs are set accordingly to the recommandations

[database]
LOG_SQL = false

[log]
MODE = console
LEVEL = debug
ROUTER = console
COLORIZE = false
ENABLE_SSH_LOG = true

@brechtvl
Copy link
Contributor

brechtvl commented Mar 4, 2023

@MoutonSanglant #23154 and #23219 are likely to help, they are very recent and not in a release yet.

@MoutonSanglant
Copy link

@brechtvl Thank you! I'll make a report as soon as we can test it

@wxiaoguang
Copy link
Contributor

Is there any new problem?

@wxiaoguang wxiaoguang added the issue/needs-feedback For bugs, we need more details. For features, the feature must be described in more detail label Apr 25, 2023
@github-actions github-actions bot locked as resolved and limited conversation to collaborators Jun 17, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
issue/needs-feedback For bugs, we need more details. For features, the feature must be described in more detail type/bug
Projects
None yet
Development

No branches or pull requests

10 participants