登录
首页 >  Golang >  Go问答

使用 go-git 将本地分支推送到远程

来源:stackoverflow

时间:2024-03-18 21:54:29 114浏览 收藏

使用 go-git 库将特定本地分支推送到远程时,指定正确的 refspec 至关重要。refspec 定义了本地分支与远程引用之间的映射。如果 refspec 格式不正确,则推送操作将失败或无法产生预期效果。本文将探讨使用 go-git 正确指定 refspec 的规范方法,以确保本地分支成功推送到目标远程。

问题内容

使用 go-git 将特定单个本地分支推送到特定远程的规范方法是什么?

我签出并使用 go-git 打开本地存储库

repo, err := git.plainopen("my-repo")

该存储库具有默认的 origin 远程。

我正在尝试将此存储库的内容同步到另一个远程 mirror,因此我添加了远程

repo.createremote(&config.remoteconfig{
                name: "mirror",
                urls: []string{"[email protected]:foo/mirror.git"},
            })

首先,我从 origin 获取存储库内容

err = remote.fetch(&git.fetchoptions{
                remotename: "origin",
                tags:       git.alltags,
            })

...并使用 remote.list() 发现所有感兴趣的分支和标签

最后一步是将分支推送到 mirror,同时根据映射重写分支名称。例如。 refs/remotes/origin/master 签出为 refs/heads/master 应作为 main 推送到 mirror 远程。因此,我正在迭代分支并尝试将它们一一推送:

refSpec := config.RefSpec(fmt.Sprintf(
                "+%s:refs/remotes/mirror/%s",
                localBranch.Name().String(),
                // map branch names, e.g. master -> main
                mapBranch(remoteBranch.Name().Short()),
            ))
err = repo.Push(&git.PushOptions{
                RemoteName: "mirror",
                Force:      true,
                RefSpecs:   []config.RefSpec{refSpec},
                Atomic:     true,
            })

但这会导致 git.noerralreadyuptodate 并且 mirror 远程上没有任何反应。


正确答案


当将单个分支推送到远程时,refspec 不应采用 +refs/heads/localbranchname:refs/remotes/remotename/remotebranchname 格式,例如此处

// refspec is a mapping from local branches to remote references.
...
// eg.: "+refs/heads/*:refs/remotes/origin/*"
//
// https://git-scm.com/book/en/v2/git-internals-the-refspec
type refspec string

但是作为

"+refs/heads/localbranchname:refs/heads/remotebranchname"

相反。请参阅示例

    refSpecStr := fmt.Sprintf(
        "+%s:refs/heads/%s",
        localBranch.Name().String(),
        mapBranch(remoteBranch.Name().Short()),
    )
    refSpec := config.RefSpec(refSpecStr)
    log.Infof("Pushing %s", refSpec)
    err = repo.Push(&git.PushOptions{
        RemoteName: "mirror",
        Force:      true,
        RefSpecs:   []config.RefSpec{refSpec},
        Atomic:     true,
    })

今天带大家了解了的相关知识,希望对你有所帮助;关于Golang的技术知识我们会一点点深入介绍,欢迎大家关注golang学习网公众号,一起学习编程~

声明:本文转载于:stackoverflow 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>