Usually the way I do renames to make sense for myself is -
$ git clone <remote URL.git>
$ mv remotedir nameIwant
I was wondering if there is a better way to do it.
The reason is sometimes I wanna try some of the forks and wanna keep the main repo. as pristine and the forks also renamed from where they came from. I do know that in ~/.git/config of the repo you can get the remote path but its easier to remember this way.
Is there a better way to do that ?
I did searches on the web but couldn't find anything which helped me.