I had a file:
a.cs
which I renamed to:
b.cs
and made some logic changes in b.cs
Now I realized I need to re-add a.cs BUT keep b.cs.
I added back a.cs but I don't see it in the working directory and so I can't add it to the staging area and commit.
In the remote, I see that b.cs was renamed.
I assume it's because I renamed the original file instead of deleting it.
I know about the mv command but I don't know how to use it in this specific scenario
So what I need now, if it's possible, is to add back a.cs AND still keep b.cs?
Updated Ok - so this is mistake. The file was added back. Sorry for the confusion.