Create app with Ionic 3

1

I work with ionic 3.10, at the moment of creating a project it asks me if I want to connect to Git and it asks me for credentials, mail and pass, when choosing the N of No, it gives me an error because it asks for credentials.

Error

In what way can I choose the N option and I do not get an error?

Greetings

    
asked by Pedro Ávila 19.09.2017 в 20:36
source

3 answers

1

This worked for me

Execute these two commands:

 git config --global user.email "[email protected]"
 git config --global user.name "Your name"

You can modify the email address and username in those commands

Edit The particularity of my answer is that I explain it more in details

    
answered by 07.11.2017 в 10:11
0

and registering git credentials even if they will not be used?

git config user.name "nombre"
git config user.email "[email protected]"

Would not you let it continue that way?

    
answered by 19.09.2017 в 21:57
0

You can disable the credentials request:

git config --global http.sslVerify false
    
answered by 07.11.2017 в 10:30