Error starting a new app on Ionic

0

I'm starting a project in Ionic , I'm just following the initial steps, by passing the command:

ionic start myApp tabs

You are generating the following error

? Connect this app to the Ionic Dashboard? No
> git add -A
> git commit -m "Initial commit" --no-gpg-sign
[ERROR] An error occurred while running git commit -m "Initial commit" --no-gpg-sign (exit code 128): 

Note: I already installed Git.

    
asked by anonymous 28.10.2017 / 22:26

1 answer

0

Have you already set up Git ?

To make a Commit , Git needs to know your name and your email address.

The purpose of the tool is not just to track code changes, but who made the changes!

To configure, run the commands below, informing your Name and Email .

git config --global user.name "SEU NOME" // Para configurar o nome
git config --global user.email "[email protected]" // Para configurar o email
  

Source: SOen

    
28.10.2017 / 23:41