git提交代码github使用指南

github使用指南

  1. 第一步:创建Github新账户

  2. 第二步:新建仓库

    git提交代码github使用指南_第1张图片

  3. 第三步:填写名称,简介(可选),勾选Initialize this repository with a README选项,这是自动创建REAMDE.md文件,省的你再创建。

    git提交代码github使用指南_第2张图片

  4. 第四步:安装git程序,地址:http://rj.baidu.com/soft/detail/30195.html?ald

  5. 第五步:右击鼠标,打开Git Bash Here,输入以下命令生成密钥来验证身份
    ssh-keygen -C ‘[email protected]’ -t rsa

    连续三个回车之后会在windows当前用户目录下生成.ssh文件夹,和linux一样。

    git提交代码github使用指南_第3张图片

    把文件夹下的id_rsa.pub文件内容全部复制。
    然后打开github账户设置,然后在title随便输入,key栏粘贴刚才的密钥。

    git提交代码github使用指南_第4张图片

    git提交代码github使用指南_第5张图片

  6. 第六步:在Git Bash Here下输入命令测试刚才的公钥是否认证正确。
    ssh -T [email protected]

    正确结果会显示:
    Warning:Permanently added ‘github.com,207.97.227.239’ (RSA) to the list of known hosts.
    Hi Flowerowl! You’ve successfully authenticated, but GitHub does not provide shell access.
    warning 不用理会。

  7. 第七步:clone刚才新建的repository 到本地,输入命令:
    git clone https://github.com/doublechina/MultipleFix.git
    git提交代码github使用指南_第6张图片

    这时会在目录下生成拉下新建的项目内容:

    git提交代码github使用指南_第7张图片

  8. 第八步:将想上传的代码拷贝到此文件夹下,我已经上传过部分代码,我以test1.txt为例:

    git提交代码github使用指南_第8张图片

  9. 第九步:在工程根目录切换到Git Bash Here命令行下,输入命令:
    git add ./ ( 添加文件到缓冲区)
    git commit -m “add file” (提交文件到本地仓库)
    git push (提交文件到远程仓库)

    更多git指令参照 http://www.yiibai.com/git/git_push.html

你可能感兴趣的:(随谈,github,git)