GitHub Desktop 錯誤及解決方法

2021-09-11 20:24:44 字數 687 閱讀 6896

今天在giithub客戶端提交**,老是出現這個錯誤,經過查資料,錯誤的解決方法如下。

ommit failed - exit code 128 received, with output: '*** please tell me who you are.

run git config --global user.email "[email protected]"

git config --global user.name "your name"

to set your account's default identity.

omit --global to set the identity only in this repository.

fatal: unable to auto-detect email address (got 'administrator@w310-002.(none)')'

解決方法

在專案的根目錄下有乙個隱藏資料夾–.git,裡面有乙個config檔案,利用記事本或什麼什麼的開啟它,在檔案的最後新增下面的**:

***換成自己的名字和郵箱位址,然後儲存檔案,再去提交ok啦!

[user]

name = ***

email = ***

github Desktop上傳專案

首先,我們需要github賬號一枚,在本地安裝github desktop,第一步,安裝本地的github desktop,並且登陸。登陸成功後,顯示如下。注意 此處的chat和react native為自己建好的庫,若是使用者第一次使用github desktop 則沒有這兩個庫。第二步,進入gi...

github desktop 無法更新上傳本地檔案

問題 當 commit to master時,出現 a lock file already exits in the repository,which blocks this operation from completing.解決辦法 在檔案的.git檔案中 有個index.lock檔案。把它刪除...

使用github desktop隱藏檔案和資料夾

使用github的時候,有些檔案不能上傳到專案中公開,但是還必須將此檔案放在專案當中才可以執行,或者儲存包檔案上傳太浪費時間比如node modules資料夾,這時候我們就需要隱藏掉相關的檔案和資料夾 在github專案根目錄建立乙個.gitignore,然後在裡面配置相關的引數就可以隱藏掉當前的檔...