美文网首页
git 本地项目push到远程

git 本地项目push到远程

作者: Jeannie_3530 | 来源:发表于2020-09-22 17:01 被阅读0次

    这个操作其实不难,但是为了防止每次都查,写一个教程在这里。

    #初始化

    gitinit

    git add *

    git commit -m "all is new"

    # 提交到远程仓库

    git remote add origin <你的githubrepo url,.git结尾>

    git push -u origin master

    Usernamefor 'https://github.com': jeannieyeliu

    Passwordfor'https://jeannieyeliu@github.com':

    相关文章

      网友评论

          本文标题:git 本地项目push到远程

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