美文网首页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 用户名和邮箱

    简介 第二个坑 错误 解决方法 打开git所在目录下的git-base文件,执行下面两条语句 如下:

  • git使用

    全局配置添加用户名和邮箱git config --global user.name "用户名"git config...

  • git 安装配置合集

    安装之后的配置 配置git用户名和邮箱git config user.name "用户名"git config u...

  • Git学习03-进阶

    1.用户名和邮箱 git config --global user.name "zty" git config -...

  • git 常用命令

    1.设置邮箱,用户名 git config --global user.name +用户名 git config ...

  • Git配置及入门仓库

    配置git公钥 配置用户名和邮箱: $ git config --globaluser.name"用户名" ...

  • git 学习笔记

    查看用户名和邮箱地址: $ git config user.name $ git config user.emai...

  • git常用命令

    1.查看用户名和邮箱地 $ git config user.name$ git config user.email...

  • GitHub使用

    入门配置config 如果使用Git,必须给Git配置用户名及邮箱 给当前的Git配置用户名和邮箱 给当前的Git...

  • Git实用命令

    config 配置用户名和邮箱git config --global user.name "username"gi...

网友评论

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

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