git 命令的使用

2020-09-15  本文已影响0人  玩转Android

一、 本地代码第一次上传

1. 在github官网上,创建远程仓库,并获取SSH 。 例如:-git@github.com:ManPT/Web-.git

2.创建并初始化本地仓库

3. 生成公钥和私钥,添加到github中

备注: 如果出现 “Please make sure you have the correct access rights and the repository exists” 提示,是因为没有配置好公钥。

4. 关联远程仓库

git remote add origin git@github.com:ManPT/Web-.git

5. 提交到远程仓库

git push -u origin master

上一篇 下一篇

猜你喜欢

热点阅读