工具操作-git

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_38331606/article/details/90446188

1.下载路径:

       https://git-scm.com/

2.安装完成后,配置用户信息 

    a.打开git bash输入
    $ git config --global user.name "runoob"
    $ git config --global user.email [email protected]

         b.配置完成后,输入 $ git config --list 查看配置是否成功

      

3.图形化工具安装 sourcetree

     详见文章

    

4.注册github账户

5.工作流

6.绑定本地git和远程github之间的关系

      a.本地git生成对应github账户的ssh key

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

       b.远程github配置ssh key

       c.本地查看 本地git和远程github的关系是否成功

            $ ssh -T [email protected]

7.github创建远程仓库

猜你喜欢

转载自blog.csdn.net/qq_38331606/article/details/90446188