0

I have a folder called Utils.

After checking it in to remote I see it appears as utils which fails the build.

I tried to follow renaming methods (maybe I'm doing it wrong) but I'm not able to change it. This is what I tried.

git mv utils Utils

I'm getting a message that the action failed with no other info

Ace
  • 701
  • 1
  • 6
  • 24

1 Answers1

3

Rename the folder to something else first, then rename it to your expected name:

git mv utils tmp
git mv tmp Utils
knittl
  • 216,605
  • 51
  • 293
  • 340