0

I have just checked the origin and i found this:

$ git remote -v
origin  https://github.com/asifbilaliems/IEMSCode/tree/master/Apps/ReportsProject (fetch)
origin  https://github.com/asifbilaliems/IEMSCode/tree/master/Apps/ReportsProject (push)

but still, i am getting this issue:
$ git push origin master
fatal: repository 'https://github.com/asifbilaliems/IEMSCode/tree/master/Apps/ReportsProject/' not found

any suggestion? is this because of I am accessing a folder inside the repository?

GoodDeeds
  • 7,956
  • 5
  • 34
  • 61
Abdul Qayyum
  • 39
  • 1
  • 5
  • 1
    Isn't IEMSCode your repository? In that case, your path should only be https://github.com/asifbilaliems/IEMSCode . – GoodDeeds Mar 30 '20 at 15:12

1 Answers1

1

The following should work:

git remote rm origin
git remote add origin https://github.com/asifbilaliems/IEMSCode
git push -u origin master

See e.g. here. See also here for the process.

Christoph
  • 6,841
  • 4
  • 37
  • 89