1

Windows 10 , log

git.exe clone --progress -v "https://github.com/atul****/nodejs-express-mysql.git" "H:\sts\Git\nodejs-express-mysql"
Cloning into 'H:\sts\Git\nodejs-express-mysql'...
remote: Repository not found.
fatal: repository 'https://github.com/atul*****/jenkinsDemo1.git/' not found
flaxel
  • 4,173
  • 4
  • 17
  • 30
Atul
  • 19
  • 3

1 Answers1

1

that is the issue why this repo are showing "jenkinsDemo1.git" , already delated this repo

Make sure tha new repository is accessible:

git ls-remote https://github.com/atul****/nodejs-express-mysql.git

Check your global configuration:

git config --global -l

If you see any insteadOf directive, that could explain why a github.com URL gets changed automatically

VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250