使用Git管理github的代码库-上

1、下载安装Git

https://download.csdn.net/download/notfindjob/11451730?spm=1001.2014.3001.5503

2、注册一个github的账号(已经注册的,可略过这一步)

3、打开git命令行,配置github账号

|-----------------------------------------------|
| git config --global user.name "你的用户名" |

|-------------------------------------------------------|
| git config --global user.email "你的github注册邮箱" |

4、在github上建立一个新的代码库,在git命令行输入命令克隆代码库到本地(默认克隆到本地"""C:\Users\Administrator")

|--------------------------------------------------------|
| git clone https://github.com/你的用户名/你的代码库名称.git |

5、使用Git GUI打开刚才克隆的本地代码库

6、在此代码库中添加文件,commit、push,会提示输入账号和密码

7、问题处理:

因为2021年8月13日之后,已经不支持https提交代码,故需要设置ssh方式

1)找到刚才克隆的本地代码库,在.git里边找到config文件。

2)修改config文件,将https修改为ssh方式,ssh后边的字段可以到github上复制

3) git配置账号、密码(第3步已经完成,可以略过),同步骤3

4)生成ssh证书

|-------------------------------------------|
| $ ssh-keygen -t ed25519 -C "你的邮箱" |

5)下载并开启ssh代理服务器

https://download.csdn.net/download/notfindjob/89302323

错误处理:Could not open a connection to your authentication agent

a、说明是代理没有开启或者开启参数不对

|----------------------------------|
| $ eval "$(ssh-agent -s)" |

|-------------------------------|
| ssh-add ~/.ssh/id_rsa |

6)github中设置SSH密钥

Git配置SSH Key的时候提示密钥无效操作步骤

a、生成公钥

ssh-keygen -t rsa -C "GitHub邮箱"

b、进入路径

vim ~/.ssh/id_rsa.pub

c、复制公钥到GitHub设置SSH and GPG keys中的SSH keys

d、解决方法:

第b步使用如下命令后复制

cat ~/.ssh/id_rsa.pub

8、重新push,大功告成

相关推荐
油泼辣子多加11 小时前
2024年12月18日Github流行趋势
github
high201111 小时前
【Git】-- 版本说明
git
hunteritself11 小时前
AI Weekly『12月16-22日』:OpenAI公布o3,谷歌发布首个推理模型,GitHub Copilot免费版上线!
人工智能·gpt·chatgpt·github·openai·copilot
kaixin_learn_qt_ing11 小时前
git clone
git
sin220111 小时前
git stash
git
喝鸡汤11 小时前
一起学Git【第二节:创建版本库】
git
慢慢成长的码农11 小时前
git 同步分支操作
git
sin220111 小时前
git推送本地仓库到远程(Gitee)
git·gitee
丁总学Java13 小时前
git branch -r(--remotes )显示你本地仓库知道的所有 远程分支 的列表
git
pubuzhixing14 小时前
开源白板新方案:Plait 同时支持 Angular 和 React 啦!
前端·开源·github