美文网首页
Linux下git操作项目时保存账号密码

Linux下git操作项目时保存账号密码

作者: 刘禹锡_c886 | 来源:发表于2021-07-15 11:10 被阅读0次

    git 每次操作需要输入用户名/密码验证

    在项目根目录下找到 .git/config 文件进行修改

    [core]
            repositoryformatversion = 0
            filemode = true
            bare = false
            logallrefupdates = true
    [remote "origin"]
            url = https://***.git  (自己的git源)
            fetch = +refs/heads/*:refs/remotes/origin/*
    [branch "master"]
            remote = origin
            merge = refs/heads/master
    
    #追加下面两行配置
    [credential]
        helper = store
    
    

    这样操作开发当前项目,git操作不会提示再次输入账号密码,当然还可以用其他方法

    git config查看配置

    git config --list
    
    
    git config --global user.email "email.com"
    

    相关文章

      网友评论

          本文标题:Linux下git操作项目时保存账号密码

          本文链接:https://www.haomeiwen.com/subject/jrpppltx.html