github项目上传与下载

一、准备工具

1.安装git

安装教程:https://www.cnblogs.com/wj-1314/p/7993819.html

注意:初次安装git完毕后需要配置用户名和邮箱及密钥(教程:https://www.cnblogs.com/lan-cheng/p/8975774.html)

(首次安装完git需要生成秘钥并在github上面进行配置)

2.安装TortoiseGit(上传项目需要用到)

安装教程:https://blog.csdn.net/u011159417/article/details/78453099

重置TortoiseGitgit用户信息教程:https://www.cnblogs.com/QUSIR/p/4392121.html

github项目上传与下载_第1张图片

github项目上传与下载_第2张图片

上传github项目视频教程:https://www.bilibili.com/video/av58028472/

二、安装过程

注意1:首次用  git push -u origin master会弹出登陆页面并需要填写username(注册邮箱)和password,这里密码不是github的密码或者本地git的密码,而是github的Personal access tokens(注意创建个人访问令牌要把勾打上)

处理教程:https://www.cnblogs.com/formybestlife/p/8193836.html

(报错:remote: Invalid username or password......)

生成Personal access tokens教程:https://blog.csdn.net/NGU2028070003/article/details/86634474

(gitlab创建个人访问令牌(personal access token))

注意2:出现Permission denied (publickey).////remote: Permission to xxx/test.git denied to xxx.等权限问题

[email protected]: Permission denied (publickey).////remote: Permission to xxx/test.git denied to xxx.等权限问题

错误原因:

  账号切换, 原账号保存数据未清除

解决:

  1. 清除凭证: 控制面板-->用户账户-->凭证管理器-->管理凭证:

    删除git相关的凭证

  2. 删除本地git配置数据:

    cd ~ && rm -rf .git*

  即可重新配置git信息

(解决:需要删除github个人访问令牌重新创建,注意要把权限的勾打上)

教程:http://www.bubuko.com/infodetail-2850462.html

 

 

 

你可能感兴趣的:(github项目上传与下载)