I am encountering a problem with git
and Windows
. It turns out that the work team is working in linux
and I find Windows
, so when I do commit
the line breaks that I take into account are the Windows
and therefore the people make the Posts tells me that I should change this to Linux
.
Searching in English OS, says just do:
git config --global core.autocrlf false
the configuration should be changed, but, for some reason, when I do it, it leaves me in true
, in other words I do not see any effect.
The complete code:
git config --global core.autocrlf false
C:\xampp\htdocs\DDDDD\public>git config --list
core.symlinks=false
core.autocrlf=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
core.edito=atom --wait
core.autocrlf=false
push.default=simple
user.name=Wilfredo Perez
[email protected]
core.repositoryformatversion=0
core.filemode=false
core.bare=false
core.logallrefupdates=true
core.symlinks=false
core.ignorecase=true
core.hidedotfiles=dotGitOnly
remote.origin.url=https://bitbucket.org/XXXXX
remote.origin.fetch=+refs/heads/*:refs/remotes/origin/*
branch.master.remote=origin
branch.master.merge=refs/heads/master
At the end of the day, according to the docs, I do not know if they go in false or input. Can someone guide me?