美文网首页
Git的安装——git的学习笔记1

Git的安装——git的学习笔记1

作者: 懒拖和傻淘 | 来源:发表于2019-01-06 20:42 被阅读3次

    1 Linux

    • 先检查系统是否有安装git,直接输入git:
    $ git
    
    • 如果提示未安装,则输入下面这个命令:
    $ sudo apt-get install git
    

    然后等待安装完毕即可。

    2 windows

    • 没安装的直接到官网下载安装,没啥特殊要求,一路默认即可。
    • 然后在开始菜单找到Git->Git bash。

    3 全局配置用户名与Email

    $ git config --global user.name "Your Name"
    $ git config --global user.email "email@example.com"
    
    • config --global表示对本机进行全局的配置创建的仓库都将默认使用这个用户名与Email。
    • 需要单独给某个仓库命名时,把--global去掉就行。
    $ git config user.name "Your Name"
    $ git config user.email "email@example.com"
    

    4查看当前所有配置

    $ git config -l
    

    相关文章

      网友评论

          本文标题:Git的安装——git的学习笔记1

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