Why am I getting this error when my git repository url is correct?
jitendra@JITENDRA-PC /c/mySite (master)
$ git push beanstalk master
fatal: \'git@skarp.bea
I met a similar problem when I tried to store my existing repo in my Ubunt One account, I fixed it by the following steps:
Step-1: create remote repo
$ cd ~/Ubuntu\ One/
$ mkdir
$ cd
$ mkdir .git
$ cd .git
$ git --bare init
Step-2: add the remote
$ git remote add origin /home//Ubuntu\ One//.git
Step-3: push the exising git reop to the remote
$ git push -u origin --all