According to the official documentation of git
Getting Started - Configuring git for the first time when executing the command
git config --list
It should list all the configuration that I have given to the environment along with my user.name
anduser.email
, my problem is that when executing this command it returns this result:
git config --list
core.symlinks=false
core.autocrlf=true
core.fscache=true
color.diff=auto
color.status=auto
color.branch=auto
color.interactive=true
help.format=html
http.sslcainfo=C:/Program Files/Git/mingw64/ssl/certs/ca-bundle.crt
diff.astextplain.textconv=astextplain
rebase.autosquash=true
credential.helper=manager
gui.recentrepo=C:/Users/jorius/Desktop/MIK
core.autocrlf=true
core.excludesfile=C:\Users\jorius\OneDrive\Documentos\gitignore_global.txt
Which does not show me this information, I would like to know if this is an "error" or if it is normal for it to happen, I find it curious that it does not appear since if I work in a repository it does not cause me any problem and it does it commits
correctly.
you can run
You get the path of your file
.gitconfig
and add
Then execute
git config --list
and this data should come out in the response.