Error starting a new app on Ionic

Asked

Viewed 238 times

0

I’m starting a project on Ionic, I’m just following the initial steps, passing the command:

ionic start myApp tabs

Is 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.

1 answer

0


You have already set up the Git ?

To make a Commit, the Git need to know your name and e-mail address.

The goal of the tool is not only 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

Browser other questions tagged

You are not signed in. Login or sign up in order to post.