github 创建项目并上传本地项目

好处:方便项目代码管理,现在可以创建免费私有库了。

1.本地git安装,注册GitHub账号

    git官网:https://git-scm.com/

    github官网:https://github.com/

2.创建本地git密钥

    打开git bash

        $ git config --global user.name "user.name"

        $ git config --global user.email "[email protected]"

        $ cd ~/.ssh(查看ssh key)

    **创建

        $ssh-keygen -t rsa -C "[email protected]"

    创建完成默认地址  

        C:\User\.ssh

    创建好以下文件:id_rsa  id_rsa.pub  known_hosts

        id_rsa.pub是我们要用的公钥,命令行直接复制:cat ~/.ssh/id_rsa.pub

3.配置公钥到GitHub

        头像 -> Settings -> 左栏点击 SSH and GPG keys -> 点击 New SSH 

        *官方出了详细的解释和说明:

                https://help.github.com/articles/connecting-to-github-with-ssh/

4.创建repository,填入项目信息

github 创建项目并上传本地项目_第1张图片

5.clone项目目录到本地

    克隆项目到本地:

github 创建项目并上传本地项目_第2张图片

    git clone (SSH协议或者HTTPS协议)

6.本机编辑项目内容

    使用编辑器开发你的项目。。。

7.上传项目到github

    (1)进入项目目录

    (2)git add .

    (3)git status

    (4)git commit -m "说明"

    (5)git push

恭喜你,完成了!!!

你可能感兴趣的:(github 创建项目并上传本地项目)