我正在使用 macOS Catalina。我已经在 GitLab 上有一个存储库并SSH-key
分配了一个。现在我想从终端创建另一个存储库。我执行以下操作:
git config user.name my_name
git config user.email my_email
git init
然后我得到这个:
Initialized empty Git repository in directory
到目前为止,一切都很好。
git remote add origin git@gitlab.com:my_name/repo.git
git add .
git commit -m 'commit'
git push -u origin master
然后我收到以下错误:
git@gitlab.com: Permission denied (publickey).
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
然后我转到我已经拥有的存储库并尝试推送到那里,一切正常,所以我想我对SSH-key
. 我知道这是互联网上一个非常常见的问题,但没有一个答案能解决我的问题。