标签:bsp gallery 远程仓库 erro 密码 git clone ima 克隆 error:
作用:备份,实现代码共享集中化管理
将远程仓库(github对应的项目)复制到本地
git clone 仓库地址
多学一招:仓库地址由来
git push
︴思考:为什么无法同步
或没有权限
The requested URL returned error: 403 Forbidden while accessing
答案:私有项目,没有权限,输入用户名密码,或者远程地址采用这种类型:
vi .git/config
# 将
[remote "origin"]
url = https://github.com/用户名/仓库名.git
修改为:
[remote "origin"]
url = https://用户名:密码@github.com/用户名/仓库名.git
标签:bsp gallery 远程仓库 erro 密码 git clone ima 克隆 error:
原文地址:https://www.cnblogs.com/zhjblogs/p/14967903.html