在IntelliJ IDEA中连接到现有的Git存储库

g6baxovj  于 2023-10-15  发布在  IntelliJ IDEA
关注(0)|答案(1)|浏览(118)

我正在尝试将现有的非空项目连接到现有的非空存储库。我发现this question没有解决这个问题。
标题说明了一切,有什么想法吗?

ghhaqwfi

ghhaqwfi1#

在切换到Git之前,先在命令行中尝试。

cd /path/to/local/repository
git remote add origin https://url/existing/remote/repository
git fetch
git log --decorate --oneline --graph --all --branches

如果您看到origin/main和本地主分支有相同的历史记录,那么您拥有正确的远程存储库。
然后打开IntelliJ IDEA,它应该检测新添加的远程origin引用。
(勾选VCS -> Git -> Remotes

相关问题