Git: Permission denied (publickey) fatal – Could not read from remote repository. while cloning Git repository

I am unable to clone a Git repository, and getting this error: krishna.soni@KRISHNACHANDRAS /c/Projects $ git clone http://stage.abc.com:10088/pqr http://<url>/<repository> Cloning into ‘<repository>’… fatal: could not read Username for ‘http://<url>’: No such file or directory I’ve read Bitbucket, Windows and “fatal: could not read Password for”, but still have the problem. I proceeded further but am … Read more

git clone through ssh

I have a project on which I created a git repository: $ cd myproject $ git init $ git add . $ git commit I the wanted to create a bare clone on another machine: $ cd .. $ git clone –bare myproject ssh://user@server:/GitRepos/myproject.git I executed the clone but did not print any answer. I … Read more