Search code examples
gitgithubangular-seed

How to push angular-seed project to github?


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?


Solution

  • 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