I\'m not sure why I\'m unable to checkout a branch that I had worked on earlier. See the commands below (note: co is an alias for checkou
co
checkou
On Windows OS by default git is instaled with
core.ignorecase = true
This means that git repo files will be case insensitive, to change this you need to execute:
\yourLocalRepo> git config core.ignorecase false
you can find this configuration on .git\config file