go get获取gitlab私有仓库的代码

栏目: 编程工具 · 发布时间: 6年前

内容简介:[toc]在上一篇文章中,已经介绍了如何搭建Gitlab Https服务<在

目录

[toc]

1、Gitlab的搭建

在上一篇文章中,已经介绍了如何搭建Gitlab Https服务< Nginx设置Https反向代理,指向Docker Gitlab11.3.9 Https服务 >

2、如何通过go get,获取Gitlab的代码

$GOROOT/src/cmd/go/internal/get/vcs.go 的源码中可以看到,大概在997行左右 , go get 还是使用 GIT 获取代码的。

// vcsPaths defines the meaning of import paths referring to
// commonly-used VCS hosting sites (github.com/user/dir)
// and import paths referring to a fully-qualified importPath
// containing a VCS type (foo.com/repo.git/dir)
var vcsPaths = []*vcsPath{
    // Github
    {
        prefix: "github.com/",
        re:     `^(?P<root>github\.com/[A-Za-z0-9_.\-]+/[A-Za-z0-9_.\-]+)(/[\p{L}0-9_.\-]+)*$`,
        vcs:    "git",
        repo:   "https://{root}",
        check:  noVCSSuffix,
    },

    // Bitbucket
    {
        prefix: "bitbucket.org/",
        re:     `^(?P<root>bitbucket\.org/(?P<bitname>[A-Za-z0-9_.\-]+/[A-Za-z0-9_.\-]+))(/[A-Za-z0-9_.\-]+)*$`,
        repo:   "https://{root}",
        check:  bitbucketVCS,
    },

    // IBM DevOps Services (JazzHub)
    {
        prefix: "hub.jazz.net/git/",
        re:     `^(?P<root>hub\.jazz\.net/git/[a-z0-9]+/[A-Za-z0-9_.\-]+)(/[A-Za-z0-9_.\-]+)*$`,
        vcs:    "git",
        repo:   "https://{root}",
        check:  noVCSSuffix,
    },

    // Git at Apache
    {
        prefix: "git.apache.org/",
        re:     `^(?P<root>git\.apache\.org/[a-z0-9_.\-]+\.git)(/[A-Za-z0-9_.\-]+)*$`,
        vcs:    "git",
        repo:   "https://{root}",
    },

    // Git at OpenStack
    {
        prefix: "git.openstack.org/",
        re:     `^(?P<root>git\.openstack\.org/[A-Za-z0-9_.\-]+/[A-Za-z0-9_.\-]+)(\.git)?(/[A-Za-z0-9_.\-]+)*$`,
        vcs:    "git",
        repo:   "https://{root}",
    },

    // chiselapp.com for fossil
    {
        prefix: "chiselapp.com/",
        re:     `^(?P<root>chiselapp\.com/user/[A-Za-z0-9]+/repository/[A-Za-z0-9_.\-]+)$`,
        vcs:    "fossil",
        repo:   "https://{root}",
    },

    // General syntax for any server.
    // Must be last.
    {
        re:   `^(?P<root>(?P<repo>([a-z0-9.\-]+\.)+[a-z0-9.\-]+(:[0-9]+)?(/~?[A-Za-z0-9_.\-]+)+?)\.(?P<vcs>bzr|fossil|git|hg|svn))(/~?[A-Za-z0-9_.\-]+)*$`,
        ping: true,
    },
}

如果是 http 服务,可以通过使用 -insecure 选项获取:

> go get -insecure  mygitlab.com/user/repo

但每次要输入密码比较麻烦,不过 go 提供了https->ssh的映射,执行如下命令即可,其中 lion 是你的帐号:

> git config --global url."git@gitlab-ce.mshk.top:".insteadOf "https://lion@gitlab-ce.mshk.top/"

配置好的文件在 ~/.gitconfig 文件中,执行 cat ~/.gitconfig 可以 看到以下内容:

[url "git@gitlab-ce.mshk.too:"]
    insteadOf = https://lion@gitlab-ce.mshk.top/

获取后的效果如下:

go get获取gitlab私有仓库的代码

博文作者:迦壹

博客地址: go get获取gitlab私有仓库的代码

转载声明:可以转载, 但必须以超链接形式标明文章原始出处和作者信息及版权声明,谢谢合作!

比特币地址:1KdgydfKMcFVpicj5w4vyn3T88dwjBst6Y

以太坊地址:0xbB0a92d634D7b9Ac69079ed0e521CC2e0a97c420


以上所述就是小编给大家介绍的《go get获取gitlab私有仓库的代码》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

老二非死不可

老二非死不可

方三文 / 机械工业出版社 / 2013-12 / 39.00

关于投资 价值投资者为啥都买茅台? 怎样识别好公司与坏公司? 做空者真的罪大恶极吗? 国际板对A股会有什么影响? 波段操作,止损割肉到底靠不靠谱? IPO真的是A股萎靡不振的罪魁祸首吗? 关于商业 搜狐的再造战略有戏吗? 新浪如何焕发第二春? 百度的敌人为什么是它自己? 我为什么比巴菲特早两年投资比亚迪? 民族品牌这张牌还靠谱......一起来看看 《老二非死不可》 这本书的介绍吧!

MD5 加密
MD5 加密

MD5 加密工具

XML 在线格式化
XML 在线格式化

在线 XML 格式化压缩工具

html转js在线工具
html转js在线工具

html转js在线工具