美文网首页
021--Git使用

021--Git使用

作者: 糖纸疯了 | 来源:发表于2018-05-21 11:51 被阅读11次
    GIT教学

    创建一个新项目并提交:or create a new repository on the command line

    echo "# Vincent-RPC" >> README.md
    git init
    git add .
    git commit -m "first commit"
    git remote add origin https://github.com/enzoism/Vincent-RPC.git
    git push -u origin master
    

    项目已经存在直接提交:or push an existing repository from the command line

    git remote add origin https://github.com/enzoism/Vincent-RPC.git
    git push -u origin master
    

    相关文章

      网友评论

          本文标题:021--Git使用

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