Hello
I try to connect my repo with ssh instead off http (to avoid typing my login password).
I try from a raspberry (under linux) and from windows.
I followed this : https://confluence.atlassian.com/bitbucket/set-up-an-ssh-key-728138079.html
I can pull modification from remote to local but when I want to push I have always message like this : "repository access denied. access via a deployment key is read-only."
I realy don't understand. I try to put the rsa key in the user setting, team setting, project settings ==> still not working.
The user declared in bitbucket are different with my windows user an linux user.
How to configure bitbucket to allow local user (windows or linux) to access in write mode ?
I try with ssh and git remote adress format
my windows git config file
[core]
bare = false
filemode = false
symlinks = false
ignorecase = true
logallrefupdates = true
[branch "master"]
remote = origin [branch "master"]
merge = refs/heads/master
[remote "origin"]
url = git@bitbucket.org:lamacteam/lamacrepo.git
fetch = +refs/heads/*:refs/remotes/origin/*
[gui]
wmstate = zoomed
geometry = 1641x704+172+39 365 192
[user]
email = x.xxxxxxxxx@gmail.com
name = rchabassier
my linux git config file
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
[branch "master"]
remote = origin [branch "master"]
merge = refs/heads/master
[remote "origin"]
url = ssh://git@bitbucket.org/lamacteam/lamacrepo.git
fetch = +refs/heads/*:refs/remotes/origin/*
I really stuck
thanks for help
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.