I have a private project called A I now want to call B. I can easily move the content from A to B, but how do I rename all content A to be now B? Specifically
const A = 1;
I want to replace that with
const B = 1;
In a smart way, where I replace all occurrences of A with B recursively?