美文网首页
如何将 project 传上 Github

如何将 project 传上 Github

作者: 苑畅 | 来源:发表于2019-05-24 11:29 被阅读0次

    1. 在 Github 上设定自己的ssh-key

    1.1 在终端运行

    more ~/.ssh/id_rsa.pub  #看看内容是否为空,不为空则复制该内容,也就是ssh-key


    1.2 如果上一步没有内容

    在终端运行

    ssh-keygen  # 连按三个回车(enter)

    more ~/.ssh/id_rsa.pub # 把出来的内容 copy 起来


    1.3 在你的github账号上添加ssh-key (确保已注册github账号并登陆)

    前往https://github.com/settings/ssh

    点击 New SSH key

    将刚刚复制的ssh-key添加进去并保存


    2. 在github上创建项目

    点击 https://github.com/new

    输入Repository name

    点击 Create Repository 

    3. 


    4. 请注意,一定要在你项目的根目录里输入这两行命令。


    5. 接下来的持续开发并上传代码

    git add [档案名称] (单个档案) 或 git add . (全部档案)

    git commit -m "这次存档的讯息"

    git push origin master (上传到 github) # 就可以持续把进度同步到 Github。


    相关文章

      网友评论

          本文标题:如何将 project 传上 Github

          本文链接:https://www.haomeiwen.com/subject/jrnbzqtx.html