美文网首页Ionic Frameworkionic 学习笔记程序员
ionic 填坑之 git config 用户名和邮箱

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

作者: 邪人君子 | 来源:发表于2018-01-04 16:24 被阅读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"
    

    如下:


    解决方法

    相关文章

      网友评论

        本文标题:ionic 填坑之 git config 用户名和邮箱

        本文链接:https://www.haomeiwen.com/subject/sfbrnxtx.html