1

终端中的 Git 在主文件夹中查找 .git。如何将其移至 IntelliJ IDEA 项目的 git 存储库?我需要添加一个遥控器。

4

2 回答 2

0

好的,我已经发现了。

只需使用

cd /path/to/intellijideaproject

然后使用你想使用的 git 命令。

就我而言:

cd /Users/Jop/IdeaProjects/Bind
git remote add Bind https://github.com/Jop-V/Bind.git
于 2013-09-16T15:39:24.573 回答
0

您可以尝试设置GIT_DIR环境变量

set GIT_DIR=/path/to/your/repo/.git

然后任何 git 命令都会考虑:

  • 当前文件夹作为工作树
  • git repo 作为其中的一个/path/to/your/repo/.git
于 2013-09-11T06:52:34.577 回答