How to add a commit in git?

0

I can not make a new commit, and I have already created a user and email and nothing will not let me. I've already tried with small projects and still nothing.

start with git init then git status git add -A when I'm going to commit, I get that message and I've created a user many times

    
asked by HectoRperez 04.01.2018 в 17:38
source

1 answer

0

You can configure git with the following commands as the console tells you:

git config --global user.email '[email protected]'
git config --global user.name 'ExampleNameOrUserGit'
  

Note: When doing push for the first time you will be asked for your registered credentials Git

    
answered by 04.01.2018 в 18:14