gpt4 book ai didi

git - Git如何检查连接到哪个 repo 项目

转载 作者:行者123 更新时间:2023-12-04 20:22:37 24 4
gpt4 key购买 nike

当我使用android studio时,如何查看哪个 repo 项目已连接?

我已经在bitbucket中创建了一个新的存储库,提取了新的存储库,并将连接到另一个存储库的旧项目复制到了该文件夹中,现在我要确保将推送到正确的存储库。

最佳答案

您应该能够通过单击 VCS> Git> Remotes 查看远程存储库。

在Android Studio中,您还可以单击“控制台”选项卡以启动终端。如果您已经设置了远程存储库,git remote -v将列出它们,以及它们的名称。

要确保推送到正确的存储库,只需确保在使用此列表时使用正确的存储库名称即可。

您的输出可能很简单

origin  https://github.com/username/myrepo (fetch)
origin https://github.com/username/myrepo (push)

在这种情况下, git push origin master将推送到 myrepo的主分支。

如果您有多个远程存储库,则可能看起来像
origin  https://github.com/username/myrepo (fetch)
origin https://github.com/username/myrepo (push)
repo2 https://github.com/username2/anotherrepo (fetch)
repo2 https://github.com/username2/anotherrepo (push)

在这种情况下,您可以根据要提交更改的位置在push命令中使用 originrepo2

关于git - Git如何检查连接到哪个 repo 项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52495260/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com