在本地设置Git以与Intellij Idea 12一起使用

时间:2013-02-01 03:14:49

标签: git intellij-idea

我整晚都在这里,但似乎无法正常工作。

这就是我想要做的事情:

我在IntelliJ Idea 12中有一个项目,我想与Git一起使用。我想在本地使用git供我个人使用。

我已经安装了git并将其设置为IntelliJ中的VCS。但是,我实际上无法推送任何东西,因为Intellij说没有远程设置。在git bash中,我在其他地方设置了一个“远程”文件夹并调用了“Project.git”文件夹。

然后我导航回我的intelliJ项目并使用命令:

git remote add origin C:\Users\Me\RemoteFolder.git

没有错误。

然后我推送并得到以下错误:

fatal: 'C:UsersMeRemoteFolder.git' does not appear to be a git repository
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

有人能告诉我什么是错的吗?或者只是给我一个在Intellij本地设置Git的简单指南?我已经尝试了他们的文档和大约100个谷歌搜索,似乎无法找到我的问题的答案。

感谢任何帮助。

1 个答案:

答案 0 :(得分:2)

首先,您需要创建一个 bare repo git init --bare C:\Users\Me\RemoteFolder.git)才能推送到它。

其次,您需要声明远程考虑反斜杠(\)不受支持的事实。 This should work better

git remote add /C/Users/Me/RemoteFolder.git
# or even
git remote add C:/Users/Me/RemoteFolder.git