git learn

作者: zzjack | 来源:发表于2017-10-27 22:10 被阅读0次

    guide source

    https://www.liaoxuefeng.com
    this is best guide i found.

    step one: install git

    ...

    step two: config

    git config -- global user.name "XX"
    git config -- global user.email "XXX"
    

    step three: create repository

    mkdir learngit
    cd learngit
    git init
    

    add file to repository

    touch test.txt
    git add test.txt
    git commit -m "add test.txt"
    

    相关文章

      网友评论

          本文标题:git learn

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