2015-10-01 69 views
0

我最近使用到位桶爲我公司內的一些項目開始時遇到與GIT麻煩每當我使用的任何命令,如git的,我收到此錯誤:sh.exe「:混帳:找不到命令

sh.exe": git: command not found 

如果有幫助,我使用Git的Bash

+0

你是如何運行的呢? – ergonaut

回答

0

你有一個similar issue with Sourcetree,具有pending ticket請求支持實際的Git的bash

只需解壓縮PortableGit-2.6.0-64-bit.7z.exe你想要的任何地方,並調用C:\path\to\PortableGit-2.6.0-64-bit\git-bash.exe:。您將有一個bash,其中git是明確的而不是「未找到命令」。

編輯:

[email protected] MINGW64 /C/Documents and Settings/Anand/Documents/2993-privacy-cube 
$ ls 
css/ images/ index.html js/ ref/ 

[email protected] MINGW64 /C/Documents and Settings/Anand/Documents/2993-privacy-cube 
$ git add * 
fatal: Unable to read current working directory: No error 

[email protected] MINGW64 /C/Documents and Settings/Anand/Documents/2993-privacy-cube 
$ git commit -m "css changes" 
fatal: Unable to read current working directory: No error 
+0

Hey VonC!感謝您的迴應。這解決了命令未找到錯誤,但現在它說我沒有工作目錄。查看我對你的帖子所做的修改。 :) – Andy

+0

@ A.Pat你可以編輯你的問題,而不是我的答案。 '/ C/Documents and Settings/Anand/Documents/2993-privacy-cube'中是否有.git文件夾?你可以嘗試'git add .'(點而不是''*'') – VonC

相關問題