2013-02-01 192 views
1

我一直在這一整夜,但似乎無法得到任何工作。設置Git本地使用Intellij Idea 12

這就是我想做的事:

我在的IntelliJ IDEA 12的一個項目,我想用Git的使用。我想在本地使用git以供我個人使用。

我已經安裝了git並將其設置爲IntelliJ中的VCS。但是,我實際上無法推送任何內容,因爲Intellij說沒有遠程設置。在git bash中,我在其他地方建立了一個'remote'文件夾,並將其命名爲'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次谷歌搜索,似乎無法找到我的問題的答案。

任何幫助表示讚賞。

回答

2

首先,您需要創建一個bare repogit 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