- 打开终端,进入项目文件夹
cd /Users/wusongsong/AndroidStudioProjects/UploadDemo/
- 然后输入命令
git init
- 然后配置 ssh , 输入命令
ssh-keygen -t rsa -C "xxxx@qq.com" //邮箱替换成你登录github的邮箱
出现下面提示,然后点击回车,会在默认路径下创建 ssh 。
wusongsong@songsongdemacbook-pro ~/AndroidStudioProjects/UploadDemo ssh-keygen -t rsa -C "1272700658@qq.com"
Generating public/private rsa key pair.
Enter file in which to save the key (/Users/wusongsong/.ssh/id_rsa):
- 之后要你输入密码,直接回车则是不设置密码。直接回车就可以。然后会让你重复密码,也是直接回车
- 当你出现如图所示,就代表 ssh 已经生成了
- 然后到github,登录后—依次点击头像—Settings—SSH and GPG keys—New SSH key
- 然后我们到ssh目录去复制rsa码
pbcopy < ~/.ssh/id_rsa.pub //拷贝 公钥
- 标题可以随便写,点击command+v粘贴刚刚拷贝的ssh-rsa公钥,点击Add
- 回到终端,验证刚刚添加ssh的公钥是否成功,输入命令
ssh -T git@github.com //注意这里的邮箱地址就填git@github.com,不是你自己的邮箱地址
显示如下内容表示添加成功
You've successfully authenticated, but GitHub does not provide shell access.
- 我们回到github上面新增仓库
复制git的仓库地址
- 回到终端,我们使用git命令将项目上传到github上,进入项目路径
cd /Users/wusongsong/AndroidStudioProjects/UploadDemo
git add . //注意,后面有个小点
git commit -m "first commit"
git remote add origin https://github.com/song234876/UoloadTest.git //后面加刚刚复制git仓库的地址
git push -f origin master
- 大功告成