#19 #20

Closed
kgorbunov wants to merge 112 commits from kgorbunov/pkgdash:#19 into master
Showing only changes of commit 42fdbeba31 - Show all commits

View File

@ -480,7 +480,7 @@ func (g Gitea) fetchCheckout(ctx context.Context, repo *git.Repository, branch,
}
if ref.Name().Short() == branch {
//Получаем ссылку на нужную ветку
headRef = plumbing.NewHashReference(ref.Name(), ref.Hash())
headRef = ref
g.logger.Info(ctx, "headRef set to "+headRef.String())
break
}
@ -526,7 +526,7 @@ func (g Gitea) fetchCheckout(ctx context.Context, repo *git.Repository, branch,
Auth: &httpauth.BasicAuth{Username: g.Username, Password: g.Password},
// Depth: 1,
// RemoteURL :
ReferenceName: plumbing.NewBranchReferenceName(branch),
ReferenceName: headRef.Name(),
Force: true,
RemoteName: "origin",
}); err != nil && err != git.NoErrAlreadyUpToDate {