Girma Ayele
Girma Ayele

Reputation: 1

git command line unable to commit and the message is below

$ git push origin master

fatal: 'origin' does not appear to be a git repository
fatal: Could not read from remote repository.
Please make sure you have the correct access rights and the repository exists.

Upvotes: 0

Views: 74

Answers (2)

Randy Leberknight
Randy Leberknight

Reputation: 1463

This message sometimes comes up of you fail to connect to the remote repo, for example if the authentication failed.

Upvotes: 0

embarq
embarq

Reputation: 335

If you've created a repo, copy the link and type git remote add origin and paste repo's link

Upvotes: 1

Related Questions