我创建了一个私人存储库,并且笔记本电脑上已有现有项目。我需要将现有项目添加到我的仓库中。但是当我使用终端时,出现以下错误:
remote: The project you were looking for could not be found. fatal: repository 'https://gitlab.com/sathishchinniah/Taxi-App-User.git/' not found
我遵循的步骤:
**Existing folder cd existing_folder git init git remote add origin https://gitlab.com/sathishchinniah/Taxi-App-User.git git add . git commit -m "Initial commit" git push -u origin master**
这会有什么问题,请帮帮我。
下面的步骤解决了我的问题。在下面的命令中,username
用您的GitLab用户名和project
GitLab项目名称替换。
git remote set-url origin https://username@gitlab.com/username/project.git
在尝试使用bellow命令推送到主服务器后,它将弹出一个窗口,以向存储库添加凭据。
git push -u origin master