When i'm trying to push my changes, git requires me to input password, despite that ssh-agent is started, ssh key file added and ssh -T git@bitbucket.org comand works fine.
Hi Evee,
Welcome to the Atalssian Community.
When you created your SSH key, did you enter a passphrase? If you did then that is what Bitbucket/Git is asking for.
Is your remote URL set to use ssh instead of https?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Run git remote -v and it will list the URL. It should looks something like this if you are using ssh:
ssh://git@bitbucket.org:<username>/my-repo.git
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
To change the URL, use this command:
git remote set-url origin git@bitbucket.org:<username>/my-repo.git
You can get the correct SSH URL if you click on Clone in Bitbucket.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.