I get this error when I try to push it to a repo.
git push origin master
remote: Repository not found.
fatal: repository 'https://github.com/username/projectname.git/' not found
The url works.
I get this error when I try to push it to a repo.
git push origin master
remote: Repository not found.
fatal: repository 'https://github.com/username/projectname.git/' not found
The url works.
check remote repo :
git remote -v
if there is not repository then add it :
git remote add origin https://github.com/username/repositoryName
pull the repository :
git pull
git add and commit by :
git add .
git commit -m "your message here"
push to repository :
git push -u origin master