Ionic Frameworkionic 学习笔记程序员

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

2018-01-04  本文已影响9人  邪人君子

简介

第二个坑

错误


[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 "you@example.com"
           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)')

错误截图

解决方法

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

git config --global user.email "name@place.com"  
git config --global user.name "name"

如下:


解决方法
上一篇下一篇

猜你喜欢

热点阅读