Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

bitbucket ssh key not working

ssh -T hg@bitbucket
You use hg@bitbucket when logging in via SSH, but in the remote URL you add to Git, you don’t specify a username. Since the configuration also does not include one, Git won’t know what username to log in with.

Change the URL to this:

git remote add origin git@bitbucket:ivanna/my-repo.git
Alternatively, you can add the user to the SSH config:

Host bitbucket
    Hostname        bitbucket.org
    User            git
    IdentityFile    /home/ivanna/.ssh/id_rsa_bitbucket
    IdentitiesOnly yes
Comment

PREVIOUS NEXT
Code Example
Shell :: bash vi exit 
Shell :: git merge conflict resolve 
Shell :: how to shutdown system immediately with shutdown command 
Shell :: create bare repository git 
Shell :: scp command ubuntu 
Shell :: toasty android github 
Shell :: creating new branch 
Shell :: ssh raspberry pi ngrok 
Shell :: open cmd here shortcut 
Shell :: list all local branches off a branhc 
Shell :: dir command list all files and subdirectories 
Shell :: linux install software without sudo 
Shell :: create samba user ubuntu 
Shell :: force push to remote branch 
Shell :: remove branch git 
Shell :: git how to track files 
Shell :: powershell and command 
Shell :: how to pull down a specific branch from github 
Shell :: npm install firebase @angular/fire 
Shell :: cmd change start in 
Shell :: permission to var/cache 
Shell :: how to install rpm package opensuse 
Shell :: elasticsearch diff between must and should 
Shell :: ubunut shortcut to open terminal in current folder 
Shell :: bash monitoring background jobs 
Shell :: failed. CAfile: none CRLfile: none 
Shell :: how to install anbox on ubuntu 18.04 
Shell :: bijoy bangla keyboard for linux 
Shell :: wildcards linux 
Shell :: reverse serach linux 
ADD CONTENT
Topic
Content
Source link
Name
7+5 =