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"
网友评论