mjaydip
mjaydip

Reputation: 143

How to refresh git repository name in git for windows?

I have renamed my git repository using web interface.
Now the changed name is not reflecting in my windows git tool.

How can I refresh it without cloning repository?

Upvotes: 1

Views: 94

Answers (1)

VonC
VonC

Reputation: 1326784

A cloned repo has no name, except maybe the name of its parent root folder.

You can rename that root folder (the one which included the .git/ inside) at any time in order to reflect the name of the remote repo manage by your web interface.

Upvotes: 1

Related Questions