安裝Git後在vscode上報錯

2022-06-20 21:06:09 字數 962 閱讀 4686

安裝git後在

vscode

上報錯說找不到

git:

在 c:/program files/git/bin/git.exe 查詢 git 中

在 c:\program files\git\cmd\git.exe 查詢 git 中

在 c:\program files (x86)\git\cmd\git.exe 查詢 git 中

在 c:\program files\git\cmd\git.exe 查詢 git 中

git installation not found.

然後找到git的目錄下開啟這兩個檔案:

在cmd中輸入

git --version

中報同樣的錯誤:

microsoft windows [版本

10.0.16299.15]

(c) 2017 microsoft corporation。保留所有權利。

c:\windows\system32>git -version

fatal: open /dev/null or dup failed: no such file or directory

解決辦法:

在網上搜尋到是因為:c:\windows\system32\drivers下的

null.sys

檔案有問題,所以在網盤上另外找了個

null.sys

替換掉原來的,然後重啟電腦就

ok了。

null.sys的網盤位址

(在我的網盤

--有關

git中也可以找到),當然這個解決辦法只限

win10

。(還有,檢視git版本用的命令是:

git --version

,有兩個槓)

在vscode中使用git和github

這學期的團隊專案比較多,這裡?一下常用的git命令,免得每次都去查 init locally and push to github config your name and email git config global user.name abc git config global user.em...

git安裝後找不見版本 Git 安裝 Git

從源 安裝 有人覺得從原始碼安裝 git 更實用,因為你能得到最新的版本。二進位制安裝程式傾向於有一些滯後,當然近幾年 git 已經成熟,這個差異不再顯著。如果你想從原始碼安裝 git,需要安裝 git 依賴的庫 autotools curl zlib openssl expat 和 libicon...

Git安裝後的配置

1.配置git提交時顯示的使用者名稱和郵箱。git config global user.name git config global user.email abc def.com2.建立驗證用的公鑰,因為git是通過ssh的方式訪問資源庫的,所以需要在本地建立驗證用的檔案。執行下列命令git程式會...