美文网首页
安卓上传到Github命令行

安卓上传到Github命令行

作者: 今天也要努力呀y | 来源:发表于2019-07-20 09:50 被阅读0次

    git init
    git remote add origin https://github.com/你的仓库地址.git git add .
    git commit -m "第一次提交" git push origin master

    更新提交时
    git add .
    git commit -m "加入什么功能"
    git push origin master

    clone时:
    先fork到你的仓库
    git clone +你仓库的网址(快捷键粘贴shift+insert)

    相关文章

      网友评论

          本文标题:安卓上传到Github命令行

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