如何推送到 gitlab 而不是 github

how to push in to gitlab instead of github

我克隆了gitlab中的文件,创建了一个新的分支,编辑了文件,最后推送了。但不知何故,它在我的 github 中创建了一个新的存储库,一个新的分支,并且在我的 gitlab 中没有任何内容。我该怎么办

在本地克隆存储库的根文件夹中检查 git remote -v 输出。

如果您“在 gitlab 中克隆了文件”,URL 应该是 GitLab 文件(https://gitlab.com/... 或 SSH git@gitlab:...

如果没有,您可能会看到 GitHub URL。

将其更改为现有的远程 GitLab 将是:

git remote set-url origin https://gitlab.com/You/YourRepo