赞
踩
GitHub上操作(第一次)
https://github.com/settings/keys
创建New SSH Keys
https://github.com/settings/ssh/new
https://help.github.com/en/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent
执行命令(在Git bash[或者 其他客户端])
ssh-keygen -t rsa -b 4096 -C “你的邮箱”
执行cat ~/.ssh/id_rsa.pub
将钥匙复制到上面的key中
注册
执行下面五条代码
git config --global user.name xxxxxx(xxxxxx为英文名字(任意)
git config --global user.email xx@xx.xx(xxxxx你的邮箱)
git config --global push.default simple
git config --global core.quotepath false #防止文件名变成数字
git config --global core.editor “vim” # 使用vim编辑提交信息
基础准备大功告成(●’◡’●)
接下来就是上传项目到github(若是命令行界面)
1.进入到项目目录 cd 项目目录
2.git init #初始化
3.添加项目到git git add 目标名称
4.上传项目到github git commit -m “第几次上传注释”
上传成功
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。