How to push angular-seed project to github?

1.4k views Asked by At

I have tried several times, and every time I get an error saying "permission denied from angular-seed". I don't understand this, as I never had any problems with any of my other projects. How do I get this darn project in my repo if it won't push?

2

There are 2 answers

35
Constantin Guidon On BEST ANSWER

You should change the origin remote of your repository , for now you are pushing on the angular-seed repository itself. check it with :

$ git remote -v

change origin remote :

$ git remote rm origin && git remote add origin "your remote url"

more info here : https://git-scm.com/docs/git-remote

5
OneCricketeer On

Are you trying to edit the angular-seed code or make a project using it?

If the former, then you need to fork it, then clone your fork, to which you do have permission.

If the later, you shouldn't need to push to the angular-seed project, you only cloned it so you can generate a project. In that case, create and clone your own repo, then use angular seed to make a project, then you can commit and push from there