美文网首页
如何在coding上建立自己的公开项目

如何在coding上建立自己的公开项目

作者: chinariver | 来源:发表于2018-03-19 17:18 被阅读0次

    1.在coding上建立一个空项目

    项目名和本地的项目名一样

    2.本地项目推送的空项目

    本地建立仓库和线上关联起来

    mkdir test1

    cd test1

    git init

    echo "# test1" >> README.md

    git add README.md

    git commit -m "first commit"

    git remote add origin https://git.coding.net/iOS_wcj/test1.git

    git push -u origin master

    相关文章

      网友评论

          本文标题:如何在coding上建立自己的公开项目

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