mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	Use the type RefName for all the needed places and fix pull mirror sync bugs (#24634)
This PR replaces all string refName as a type `git.RefName` to make the code more maintainable. Fix #15367 Replaces #23070 It also fixed a bug that tags are not sync because `git remote --prune origin` will not remove local tags if remote removed. We in fact should use `git fetch --prune --tags origin` but not `git remote update origin` to do the sync. Some answer from ChatGPT as ref. > If the git fetch --prune --tags command is not working as expected, there could be a few reasons why. Here are a few things to check: > >Make sure that you have the latest version of Git installed on your system. You can check the version by running git --version in your terminal. If you have an outdated version, try updating Git and see if that resolves the issue. > >Check that your Git repository is properly configured to track the remote repository's tags. You can check this by running git config --get-all remote.origin.fetch and verifying that it includes +refs/tags/*:refs/tags/*. If it does not, you can add it by running git config --add remote.origin.fetch "+refs/tags/*:refs/tags/*". > >Verify that the tags you are trying to prune actually exist on the remote repository. You can do this by running git ls-remote --tags origin to list all the tags on the remote repository. > >Check if any local tags have been created that match the names of tags on the remote repository. If so, these local tags may be preventing the git fetch --prune --tags command from working properly. You can delete local tags using the git tag -d command. --------- Co-authored-by: delvh <dev.lh@web.de>
This commit is contained in:
		@@ -596,7 +596,7 @@ func (m *webhookNotifier) NotifyPushCommits(ctx context.Context, pusher *user_mo
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	if err := PrepareWebhooks(ctx, EventSource{Repository: repo}, webhook_module.HookEventPush, &api.PushPayload{
 | 
			
		||||
		Ref:          opts.RefFullName,
 | 
			
		||||
		Ref:          opts.RefFullName.String(),
 | 
			
		||||
		Before:       opts.OldCommitID,
 | 
			
		||||
		After:        opts.NewCommitID,
 | 
			
		||||
		CompareURL:   setting.AppURL + commits.CompareURL,
 | 
			
		||||
@@ -747,15 +747,15 @@ func (m *webhookNotifier) NotifyPullReviewRequest(ctx context.Context, doer *use
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (m *webhookNotifier) NotifyCreateRef(ctx context.Context, pusher *user_model.User, repo *repo_model.Repository, refType, refFullName, refID string) {
 | 
			
		||||
func (m *webhookNotifier) NotifyCreateRef(ctx context.Context, pusher *user_model.User, repo *repo_model.Repository, refFullName git.RefName, refID string) {
 | 
			
		||||
	apiPusher := convert.ToUser(ctx, pusher, nil)
 | 
			
		||||
	apiRepo := convert.ToRepo(ctx, repo, perm.AccessModeNone)
 | 
			
		||||
	refName := git.RefEndName(refFullName)
 | 
			
		||||
	refName := refFullName.ShortName()
 | 
			
		||||
 | 
			
		||||
	if err := PrepareWebhooks(ctx, EventSource{Repository: repo}, webhook_module.HookEventCreate, &api.CreatePayload{
 | 
			
		||||
		Ref:     refName,
 | 
			
		||||
		Ref:     refName, // FIXME: should it be a full ref name?
 | 
			
		||||
		Sha:     refID,
 | 
			
		||||
		RefType: refType,
 | 
			
		||||
		RefType: refFullName.RefGroup(),
 | 
			
		||||
		Repo:    apiRepo,
 | 
			
		||||
		Sender:  apiPusher,
 | 
			
		||||
	}); err != nil {
 | 
			
		||||
@@ -784,19 +784,19 @@ func (m *webhookNotifier) NotifyPullRequestSynchronized(ctx context.Context, doe
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (m *webhookNotifier) NotifyDeleteRef(ctx context.Context, pusher *user_model.User, repo *repo_model.Repository, refType, refFullName string) {
 | 
			
		||||
func (m *webhookNotifier) NotifyDeleteRef(ctx context.Context, pusher *user_model.User, repo *repo_model.Repository, refFullName git.RefName) {
 | 
			
		||||
	apiPusher := convert.ToUser(ctx, pusher, nil)
 | 
			
		||||
	apiRepo := convert.ToRepo(ctx, repo, perm.AccessModeNone)
 | 
			
		||||
	refName := git.RefEndName(refFullName)
 | 
			
		||||
	refName := refFullName.ShortName()
 | 
			
		||||
 | 
			
		||||
	if err := PrepareWebhooks(ctx, EventSource{Repository: repo}, webhook_module.HookEventDelete, &api.DeletePayload{
 | 
			
		||||
		Ref:        refName,
 | 
			
		||||
		RefType:    refType,
 | 
			
		||||
		Ref:        refName, // FIXME: should it be a full ref name?
 | 
			
		||||
		RefType:    refFullName.RefGroup(),
 | 
			
		||||
		PusherType: api.PusherTypeUser,
 | 
			
		||||
		Repo:       apiRepo,
 | 
			
		||||
		Sender:     apiPusher,
 | 
			
		||||
	}); err != nil {
 | 
			
		||||
		log.Error("PrepareWebhooks.(delete %s): %v", refType, err)
 | 
			
		||||
		log.Error("PrepareWebhooks.(delete %s): %v", refFullName.RefGroup(), err)
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@@ -838,7 +838,7 @@ func (m *webhookNotifier) NotifySyncPushCommits(ctx context.Context, pusher *use
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	if err := PrepareWebhooks(ctx, EventSource{Repository: repo}, webhook_module.HookEventPush, &api.PushPayload{
 | 
			
		||||
		Ref:          opts.RefFullName,
 | 
			
		||||
		Ref:          opts.RefFullName.String(),
 | 
			
		||||
		Before:       opts.OldCommitID,
 | 
			
		||||
		After:        opts.NewCommitID,
 | 
			
		||||
		CompareURL:   setting.AppURL + commits.CompareURL,
 | 
			
		||||
@@ -853,12 +853,12 @@ func (m *webhookNotifier) NotifySyncPushCommits(ctx context.Context, pusher *use
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (m *webhookNotifier) NotifySyncCreateRef(ctx context.Context, pusher *user_model.User, repo *repo_model.Repository, refType, refFullName, refID string) {
 | 
			
		||||
	m.NotifyCreateRef(ctx, pusher, repo, refType, refFullName, refID)
 | 
			
		||||
func (m *webhookNotifier) NotifySyncCreateRef(ctx context.Context, pusher *user_model.User, repo *repo_model.Repository, refFullName git.RefName, refID string) {
 | 
			
		||||
	m.NotifyCreateRef(ctx, pusher, repo, refFullName, refID)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (m *webhookNotifier) NotifySyncDeleteRef(ctx context.Context, pusher *user_model.User, repo *repo_model.Repository, refType, refFullName string) {
 | 
			
		||||
	m.NotifyDeleteRef(ctx, pusher, repo, refType, refFullName)
 | 
			
		||||
func (m *webhookNotifier) NotifySyncDeleteRef(ctx context.Context, pusher *user_model.User, repo *repo_model.Repository, refFullName git.RefName) {
 | 
			
		||||
	m.NotifyDeleteRef(ctx, pusher, repo, refFullName)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
func (m *webhookNotifier) NotifyPackageCreate(ctx context.Context, doer *user_model.User, pd *packages_model.PackageDescriptor) {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user