如何将我的 git 点更改为 gitlab 或 AWS CodeCommit?

How to change my git point to gitlab or AWS CodeCommit?

最初我使用 git 访问我的 git 实验室存储库以进行所有推送和拉取操作。今天我尝试使用 CLI 直接在 AWS EBS 上部署我的分支。我错误地从用于 gitlab.So 的同一目录创建了 codeCommit,现在当我厌倦了推送我的代码时,它希望连接到 codeCommit,但我希望它推送到 gitlab。有人知道这个问题吗?

您需要更新 git 遥控器。您还可以添加多个遥控器,默认情况下它使用名为 "origin".

的遥控器

参见手册:https://git-scm.com/docs/git-remote

# list current remote:
$ git remote -v

# update git remote url:
$ git remote set-url origin git@....

# add new remote named "gitlab":
$ git remote add gitlab git@gitlab.com:....