ionic 填坑之 git config 用户名和邮箱

简介

第二个坑

错误


[ERROR] An error occurred while running git commit -m "Initial commit"

        --no-gpg-sign (exit code 128):

        *** 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@SuperBaolock.(none)')

ionic 填坑之 git config 用户名和邮箱_第1张图片
错误截图

解决方法

打开git所在目录下的git-base文件,执行下面两条语句

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

如下:


ionic 填坑之 git config 用户名和邮箱_第2张图片
解决方法

你可能感兴趣的:(ionic 填坑之 git config 用户名和邮箱)