提交代码到github
记录在mac 环境配置并提交代码到github
1、安装git并配置个人信息
- mac 上自带git 工具,所以不用安装git,下面上查看git 版本,如果您当前没有安装git 请先安装git
1
git version
- Terminal 配置个人信息(注意填写的是自己的信息)
1 2
git config --global user.name "frankie9527" git config --global user.email "jiangyuhan3730@gmail.com"
- Terminal 生成ssh(填写的是自己的邮箱)
1
ssh-keygen -t rsa -C "jiangyuhan3730@gmail.com"
- Terminal 输入一下查看ssh
1
cat ~/.ssh/id_rsa.pub
2、添加ssh
3、github 上创建一个项目并按照 提示就可以上传成功
- git init
- git add README.md
- git commit -m “first commit”
- git branch -M main
- git remote add origin https://github.com/frankie9527/UploadDemo.git
- git push -u origin main
4、通过gui上传代码
This post is licensed under CC BY 4.0 by the author.