当前位置:   article > 正文

第一次使用GitHub怎么操作?_github 进入en目录

github 进入en目录

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 “第几次上传注释”

上传成功

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/运维做开发/article/detail/772262
推荐阅读
相关标签
  

闽ICP备14008679号