ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
## 一、在本地添加账号 ~~~ ssh-keygen -t rsa -C "yestian@qq.com" ~~~ ## 第2步:登陆GitHub,打开“Account settings”,“SSH Keys”页面: 然后,点“Add SSH Key”,填上任意Title,在Key文本框里粘贴id_rsa.pub文件的内容: ## 三、创建项目 点击 new repository 填写标题,创建 ## 四、推送内容到远程 ~~~ git remote add origin https://github.com/yestian/mygit.git git push -u origin master ~~~ 第一次提交要带上 -u参数,以后提交 ~~~ $ git push origin master ~~~ ## 五、从远程克隆 需要知道远程的地址 ~~~ git clone https://github.com/yestian/mygit.git //或者,这种方式更快 git clone git@github.com:yestian/mygit.git ~~~