You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
The following procedure for cloning my Bitbucket repository to the HostPapa server does not work:
$ ssh -T git@bitbucket.org
Enter passphrase for key '/home/thege0/.ssh/id_rsa':
authenticated via ssh key.
You can use git to connect to Bitbucket. Shell access is disabled
$ git clone git@bitbucket.org:kiusau/deflation-made-simple.git
fatal: could not create work tree dir 'deflation-made-simple': Permission denied
$
Please advise.
Roddy
The problem was overcome when I by-passed the password for the private-key with the following SHELL commands and realized that cPanel's GIT Version Control feature and Bitbucket are incompatible.
$ eval $(ssh-agent)
Agent pid 11772
$ ssh-add ~/.ssh/id_rsa
Enter passphrase for /path/to/private/key/id_rsa:
Identity added: /path/to/private/key /id_rsa
After insuring that I -- not root -- owned the new directory that I created to hold my cloned repository I entered the destination folder with the SHELL cd command. While in the folder I followed with the following Bitbucket git command.
git clone git@bitbucket.com:kiusau/deflation-made-simple
I suppose that I must now create a repository out of the cloned files and folders with the
git init
and subsequent commands.
Roddy
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.