四.Git管理远程仓库

四.Git管理远程仓库_第1张图片
Paste_Image.png
四.Git管理远程仓库_第2张图片
Paste_Image.png

Git克隆仓库

目的:将远程仓库(github对应的项目)复制到本地,备份,实现代码共享集中化管理

下载到本地:git clone +地址

将本地文件同步到远程仓库

git push

解决git push错误

错误:The requested URL returned error:403 Forbidden while accessing
答案:私有项目,没有权限,输入用户名密码,或者远程地址采用这种类型.
解决方法:

  • ①编辑配置文件:vim .git/config
  • ②将 [remote "origin"]
    url = http://github.com/用户名/仓库名.git
    修改为:
    [remote "origin]
    url = https://用户名:密码@github.com/用户名/仓库名.git

你可能感兴趣的:(四.Git管理远程仓库)