Home > Mobile >  Removing Custom Domain in Github
Removing Custom Domain in Github

Time:12-19

I am facing issue . My gihub domin name is different and when i am going to publish it is pointing to different another domin.

http://techwithnad.me/HMTL-CSS-project - this is new pointing url

but my github username is different

https://github.com/nadeemds/HMTL-and-CSS-Project

CodePudding user response:

Going of assumptions have you purchased the domain below

http://techwithnad.me

if you just want to see the site you can go to pages in settings or start a GitHub Actions.

CodePudding user response:

You can use git remote set-url origin https://github.com/nadeemds/HMTL-and-CSS-Project.

Please refer to git help remote or https://docs.github.com/en/get-started/getting-started-with-git/managing-remote-repositories for more details.

You also can edit .git/config and change the URLs there.

  • Related