在使用Git push或pull代码的时候,总是要输入用户名和密码的问题

原因:

在创建远程仓库时,有两种方式:

git remote add origin https://git.hz.netease.com/git/hzliuwei/simlw.git

git remote add origin ssh://[email protected]:22222/hzliuwei/simlw.git
如果使用的是第一种方式,即HTTP,则之后每次push或pull代码都需要用户名密码。可以通过修改项目目录下的 .git 目录下的 config 文件修改。

[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*

url = https://git.hz.netease.com/git/hzliuwei/simlw.git    改为下面的一行:

        url = ssh://[email protected]:22222/mcloudtest/omtl.git
[branch "master"]
remote = origin
merge = refs/heads/master
[branch "develop"]
remote = origin
merge = refs/heads/develop


此时,如果git pull 或 push 出现下面的错误:

Permission denied (publickey).
fatal: The remote end hung up unexpectedly

则需要在git上上传 ssh key, 点击git右上角你的用户名,在publicKey中编辑 prefile ,添加sshKey。Ubuntu下的ssh public key可以使用 ssh 命令生成

你可能感兴趣的:(在使用Git push或pull代码的时候,总是要输入用户名和密码的问题)