chody
chody

Reputation: 209

Can't push git changes to Github

I am trying to push changes to github and I am encountering the following problem.

ts/Central-Repo/everest-web$ git push
Enter passphrase for key '/Users/developer/.ssh/id_rsa':
ERROR: Permission to meanjs/mean.git denied to everest-software.
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

What command or change in file path would fix this problem and allow me to talk to my github repo again?

Upvotes: 0

Views: 178

Answers (1)

VonC
VonC

Reputation: 1329092

meanjs/mean.git denied to everest-software.

As I just answered to your previous question, you cannot push to a repository you do not own (through https, as before, or ssh as now)

everest-software does now own meanjs/mean.git. The organization meanjs does.

You need to fork the repo first.
Then clone the fork.
Add, commit, and push back to it.

Upvotes: 1

Related Questions