Git clone / pull continually freezing at “Store key in cache?”

I’m attempting to clone a repo from my BitBucket account to my Windows 10 laptop (running GitBash). I’ve completed all of the steps necessary to connect (set up my SSH key, verified by successfully SSHing [email protected], etc). However, whenever I attempt to clone a repo, the prompt continually hangs up after confirming that I want … Read more

Can’t push to remote branch, cannot be resolved to branch

I migrated my repos from Bitbucket or Github. I don’t think this matters but it’s the only thing different. For a little while, I had two remotes set up: origin: bitbucket github: github Then I removed both and pointed origin to github: git remote remove origin git remote remove github git remote add origin https://github…. … Read more

Git on Bitbucket: Always asked for password, even after uploading my public SSH key

I uploaded my ~/.ssh/id_rsa.pub to Bitbucket’s SSH keys as explained, but Git still asks me for my password at every operation (such as git pull). Did I miss something? It is a private repository (fork of another person’s private repository) and I cloned it like this: git clone [email protected]:Nicolas_Raoul/therepo.git Here is my local .git/config: [core] … Read more

Updates were rejected because the remote contains work that you do not have locally

I’m working on a team with a few developers using git on BitBucket. We are all working on a dev branch, not pushing to master until a release. One of the developers committed incorrect code that overwrote my own by accident, and now I am trying to push the correct code back to the repo. … Read more

Repository access denied. access via a deployment key is read-only

After successfully cloning my repo from heroku and added another remote 1/ git clone [email protected]:[APP].git 2/ git remote add bitbucket ssh://[email protected]/[ACCOUNT]/[REPO].git 3/ git push bitbucket master I am still getting this error after running line (3) or using SourceTree conq: repository access denied. access via a deployment key is read-only. First I don’t understand what … Read more