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
  • 831
  • 2
  • 8
  • 28

1 Answers1

6

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

git mv utils tmp
git mv tmp Utils
knittl
  • 246,190
  • 53
  • 318
  • 364