图片授权基于 www.pixabay.com 相关协议
Git 远程仓库链接分为两种:一种是 HTTPS URL,一种是 SSH URL 。为方便理解和操作,提供一个我自己的 Git 项目地址,可供使用。
HTTPS URL:
https://github.com/cuishunbiao/defineProperties.git
SSH URL:
git@github.com:cuishunbiao/defineProperties.git
HTTPS 地址
remote: Invalid username or password.
//远端项目 无效的用户名和密码
vim .git/config
//编辑文件
//更改前
url = https://github.com/cuishunbiao/defineProperties.git
//更改后
url = https://username:password@github.com/cuishunbiao/defineProperties.git
//username = 用户名
//password = 密码
SSH 地址
GitHub 添加 SSH 的界面
使用密钥比使用密码更安全,因为您可以将多个密钥添加到同一帐户。SSH密钥是一种无需信任密码即可识别受信任计算机的方法。
https://web.archive.org/web/20140321204642/https://help.github.com/articles/generating-ssh-keys
推荐阅读
JavaScript 装箱和拆箱
Ajax 如何下载文件
为什么「局部变量」访问速度快
参考文档:
原创文章,作者:小道研究,如若转载,请注明出处:https://www.sudun.com/ask/34500.html