美文网首页
连接github的简单步骤

连接github的简单步骤

作者: 刘佳音 | 来源:发表于2016-11-28 23:46 被阅读0次

    1. windows上安装

    msysgit http://msysgit.github.io/

    安装完毕:git bash->git –version验证是否安装成功

    ————————————–

    2.连接远程仓库(github):

    a. 创建SSH key

    ssh-keygen -t rsa -C “xxx@xxx.com”

    然后一路回车,默认就行->window系统去,当前C盘,当前用户列表里面找到.ssh文件夹,里面有两个文件:

    id_rsa和id_rsa.pub

    b. 登陆github->setting->ssh key->add ssh key->把id_rsa.pub里面的东西,添加进去即可

    ————————————–

    3. 验证连接成功

    a. 在你的github里面去添加一个仓库 new repository

    b. 出来个提示 Quick setup

    c. 新建一个文件名字随便:比如: readme.md

    d. git init

    e. git config –global user.email “xx@xx.com”

    f. git config –global user.name “xxxx”

    g.

    git init

    git add README.md

    git commit -m “first commit”

    git remote add origin https://github.com/cxb8888/testgit.git

    git push -u origin master

    ————————————–

    4. 从远程克隆一个库

    1. 再次去github上创建一个仓库,并且这次勾选项 init README.md这个东西

    2. 用下面这个命令

    git clone https://github.com/cxb8888/coder.git

    就克隆到本地了

    3. cd coder

    4. ls

    5. cat README.md

    相关文章

      网友评论

          本文标题:连接github的简单步骤

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