Creating a new branch via intellij idea, for example
feature/...
The IDE renames it to
Feature/...
I try to manually change the uppercase letter to a lowercase one, but it still renames it to the uppercase one. IDE version 2021.1.1
Creating a new branch via intellij idea, for example
feature/...
The IDE renames it to
Feature/...
I try to manually change the uppercase letter to a lowercase one, but it still renames it to the uppercase one. IDE version 2021.1.1
IDE relies on command-line Git and you may check whether the same behavior takes place when you run git checkout -b feature/...
But it seems that you've already had branches with the prefix Feature
and it seems that you are running on case insensitive OS therefore Git see no difference between Feature
and feature
Please also see: https://stackoverflow.com/a/15372154/12360005