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

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"

更换本地目录下关联的远程仓库

查看当前远程仓库地址
$ git remote -v

取消本地源远程仓库
$ git remote remove origin

关联新的远程仓库
$ git remote add origin 新的远程代码仓库地址

你可能感兴趣的:(Linux下git操作项目时保存账号密码)