I\'m using remote git repository. I successfully commit my files and now I\'m trying to push it up to stream.
Operation fails with this messasge:
git
Do check the permissions on the remote/origin repository. Are they writeable by the git user? If not, you will get this error. Something like:
chown git_user.git_user -R /path/to/repo/your_funky_repo
should do the trick on *nix systems. If your remote is on windows, I am sure there's something equivalent you could run.