安装git

作者: Jiawa | 来源:发表于2017-09-11 14:45 被阅读0次

安装 git

  1. 安装 git
    sudo apt-get install git

  2. 配置git
    git config --global user.name "yourName"
    git config --global user.eamil "yourEmail"

  3. 安装成功
    git

  4. 记住密码
    vi ~/.gitconfig
    末尾添加

    [credential]
        helper = store
    

相关文章

网友评论

      本文标题:安装git

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