1

I am using mercurial for Source Control. I have cloned a repository from address

http://xyz/

Now my repository address is changed to https instead of http.

https://xyz/

How can update this in existing cloned repository so I can pull the latest changes, without cloning the entire repository again?

StayOnTarget
  • 11,743
  • 10
  • 52
  • 81
pratRockss
  • 455
  • 8
  • 25
  • Does this answer your question? [Changing Mercurial "Default" Parent URL](https://stackoverflow.com/questions/860761/changing-mercurial-default-parent-url) – StayOnTarget Mar 18 '21 at 11:39

1 Answers1

1

Just go to settings for the repository. Click on edit file it should show something like below

[paths]
default = http://xyz

Change it to https and it should resolve the issue

Vamsi
  • 388
  • 2
  • 12