Git error: conq: repository does not exist

前端 未结 13 1448
别那么骄傲
别那么骄傲 2021-02-01 02:40

I\'m getting the following errors in Git using BitBucket:

conq: repository does not exist.
fatal: The remote end hung up unexpectedly

How do I

13条回答
  •  迷失自我
    2021-02-01 03:16

    This error also occur when you rename your repo:

    Edit .git/config and change from:

    git remote add origin git@bitbucket.org:myname/myproject.git
    

    to:

    git remote add origin git@bitbucket.org:myname/my_new_project_name.git
    

提交回复
热议问题