我使用“ ssh”方法克隆了一个存储库,但是远程有一个https方法,而git push要求输入密码??
git clone git@github.com:julienfr112/random.git
cd random
git remote -v
origin https://github.com/julienfr112/random.git (fetch) origin https://github.com/julienfr112/random.git (push)
cat .git/config
[remote "origin"] url = git@github.com:julienfr112/random.git fetch = +refs/heads/*:refs/remotes/origin/*
到底是什么?
答案 0 :(得分:0)
您是否已将SSH密钥添加到github帐户中?
如果是,请尝试使用以下命令设置远程原点:
git远程设置URL来源git@github.com:用户名 / 存储位置 .git
如果否,则需要先将SSH密钥添加到您的帐户,然后再尝试...
希望有帮助...