gitHub初使用

Posted gehj

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了gitHub初使用相关的知识,希望对你有一定的参考价值。

  github以前一直在看别人的项目,今天尝试自己上传项目源码;

  操作步骤:

    1、首先对本地项目进行初始化:git init技术分享图片

    2、项目中添加文件(已有不进行操作);

    3、项目文件全部git到本地仓库 git add -A,文件太多,不展示

    4、git status 提交文件;

    5、提交文件git commit -m "initial commit"对不发生修改的项目文件执行此操作;

    6、本地git与github的关联:分别输入git config --global user.name “用户名”;和git config --global user.email“邮箱”;

    7、生成sshkey: ssh-keygen -t rsa -C "邮箱";

    8、复制生成的ssh文件:  clip < ~/.ssh id_rsa.pub

    9、进入github个人设置界面 settings 找到SSH and GPG keys:复制ssh添加ssh-key,粘贴内容,标题自己随便写;

    10、关联仓库: git remote add origin [email protected]:wittyGIrl/navigators.git(使用ssh地址,https太慢);

    11、最后: git push -u origin master即可;

ps:踩坑:一、最后push报错 src refspec master does not match any when pushing commits in git;因为没有进行commit操作;所以需要 git commit -m "initial commit",然后

      git push origin master;

    二、没有权限提交文件:尝试是否使用正确邮箱

 

 

以上是关于gitHub初使用的主要内容,如果未能解决你的问题,请参考以下文章

48个值得掌握的JavaScript代码片段(上)

gitHub初使用

VIM 代码片段插件 ultisnips 使用教程

精心收集的 48 个 JavaScript 代码片段,仅需 30 秒就可理解

如何修复空白片段?

github如何使用