I got a repository git clone and trying to commit the code.
But getting remote: Repository not found e
rror
I followed following steps.
Steps
#git clone https://<YOUR_USER_NAME_HERE>@github.com/<YOUR_USER_NAME_HERE>/<REPO>.git
#git remote rm origin
#git remote add origin https://<user>:<pwd>@<repo url>
# git push
fatal: The current branch master has no upstream branch.
To push the current branch and set the remote as upstream, use
# git push --set-upstream origin master
remote: Repository not found
.
Can somebody point me right steps? I have full permission(read/write) for this repository. Problem occured, because one developer locally created initial repository and committed. So, when I clone that repo and do development, i face issue when pushing the code.