search

Home  >  Q&A  >  body text

git operation push

曾经蜡笔没有小新曾经蜡笔没有小新2813 days ago814

reply all(3)I'll reply

  • 滿天的星座

    滿天的星座2017-05-02 09:54:46

    Try to clone the remote library first, and then push it

    git clone https://github.com/aaa/aaa.git(此处是你的库地址)
    git add *
    git commit -m 'update'
    git push -u origin master

    reply
    0
  • 过去多啦不再A梦

    过去多啦不再A梦2017-05-02 09:54:46

    Confirm whether the remote library has a master branch.
    Confirm whether you have permission to access the remote library.

    reply
    0
  • ringa_lee

    ringa_lee2017-05-02 09:54:46

    First, you need to make sure you have write permissions on the associated remote repository.
    Then, you need to make sure that the local name of your remote warehouse is origin (use the git remote show command). Although it is this name by default, what if you change it?

    reply
    0
  • Cancelreply