BitBucket push/pull keeps asking me for password

It does it even if you’ve added your ssh key?! Really?So edit .git/config and change repo url from https to ssh.It should look like thisurl = git@bitbucket.org:your_login/your_project.gitIf you don’t know the address then go to your bitbucket repo page…

It does it even if you’ve added your ssh key?! Really? So edit .git/config *and change repo url from https to ssh. It should look like this *url = git@bitbucket.org:your_login/your_project.git If you don’t know the address then go to your bitbucket repo page and check SSH address on the project’s Overvier tab. Don’t forget to set up your name (bitbucket login) in [user] section. Refer git manual or just type $ git config user.name your_login $ git config user.email your_email

You May Also Like

Visualizing GIS data in JavaFX 2.0 beta using GeoTools

Geographic data mostly comprises of polygon coordinates sets along with attributes, like country or city name, etc. This is quite easy to visualize in JavaFX, which supports rendering for SVG paths. In the article, I show how to read such GIS data from...Geographic data mostly comprises of polygon coordinates sets along with attributes, like country or city name, etc. This is quite easy to visualize in JavaFX, which supports rendering for SVG paths. In the article, I show how to read such GIS data from...