Authentication failed on sourcetree bitbucket - push

I am using visual studio in order to develop a new project. Using source tree connected to bitbucket it commits successfully. My problem is that when I am trying to push my project it is giving me an authentication error. I tried different paths that I have found through out my search example:
https://git#bitbucket.org/annarapa/tradersmarketplaceapplication.git
https://annarapa#bitbucket.org/annarapa/tradersmarketplaceapplication.git
https://annarapa:mypassword#bitbucket.org/annarapa/tradersmarketplaceapplication.git
all these options give me the same error
Could you please help me?

Related

Error: repository checked out but no solution found - when cloning Github repo using Visual Studio 2019 for Mac

Using Visual Studio for Mac (vs 8.10.14) I am trying to clone an existing Github repository.
In Visual Studio I navigate to Version Control/Clone Repository... I fill out the https path (copied from my Github repo) and hit the Clone button. Prompted for Username I enter my Github username and for password I use my freshly generated PAT (Personal Access Token) with credentials for "repo"=Full control of private repositories.
Then the clone process starts but immediately stops with error message: "Repository checked out but no solution found". After selecting the only option "OK", the process stops fully without cloning a single line of code.
Has anyone found a solution already?

New to GitHub - Error when pushing to a repository

When I commit my changes and attempt to Sync / Push to my github repository, I get the following error:
HttpRequestException encountered.
An error occurred while sending the request.
cannot spawn askpass: No such file or directory
could not read Username for 'https://github.com': terminal prompts disabled
Pushing to https://github.com//ComicBookGallery
I am using VS2017 Community, and using the Github for VS Extension. I've googled this error but have been unable to solve. Running VS in administrator mode makes no difference,
Any ideas?
(I am logged into GitHub within VS, and can log into my account fine on github.com)
Thanks in advance
I went to the repository and searched for this issue, found this issue from today, where user #meaghanlewis states:
Today GitHub turned off TLSV1.1 in order to permanently disable deprecation of several weak cryptographic standards. You could read more about that here: https://githubengineering.com/crypto-removal-notice/.
To fix this issue, you should upgrade to the latest version of Visual Studio, 15.5.7- which provides support for TLSV1.2. This update allows Git to connect to services that have deprecated support for TLSv1 and TLSv1.1.
You might also need to sign in (or sign out and then sign back in) using GitHub for Visual Studio.
User #barsonax replied stating that upgrading it to 15.5.7 fixed it.
Hope this helps, but it's better to continue seeking help for this issue directly on the issue.

RubyMine fails to find github repository

I am testing out RubyMine from JetBrains as a potential new IDE to use for rails development.
I am trying to checkout from version control using github. But when I try to checkout my repository by url (which works on my cloud 9 environment), I get "Clone Failed repository not found".
I have tried the various suggestions on the web like setting SSH executible in the Git settings to "Native".
I have tried using both token and username password in the github settings.
I have tried "clone github repositories using SSH" and combinations of all of these.
Has anyone gotten RubyMine to work with github on a mac?
Thanks.

Error 401 Authorization required when pushing to github repository

I've been working with my remote github repository with no problem at all. But since yesterday I'm not able to push to my remote repository anymore.
I work with the eclipse IDE git pluggin and whenever I try to push I am getting this error:
https://github.com/jotaseme/josemaria.moreno.IWVG-doo.miw.upm.es.git:
401 Authorization Required
I've double-checked the user and password and also I've tried with other pc. The same situation: failed pushing to remote repository.
Any suggestion?
Thanks in advance.
Found this gist in one of the eclipse platforms:
In Eclipse
Help -> Install New Software
Work with: http://download.eclipse.org/mpc/releases/1.5.1a
Select the "EPP Marketplace Client"
Proceed with defaults

Push to github in Zend Studio 9 error

I'm using Zend Studio 9.0.3 and I have a repository on github. I created a project from github on my local machine. I can commit things, but once I try to push to upstream, I get the following error:
Can't connect to any repository: https://github.com/xxxxx/xxxxx.git (An internal Exception occurred during push: https://github.com/xxxxx/xxxxx.git: insufficient data written)
Am I missing something?
Thanks in advance for any info!
(nb: replaced the actual url with xxxx - don't want anyone sniffing in it while it's in development =] )
edit:
I don't get that error anymore, but now Zend Studio thinks the master/origin repository is already up-to-date, while there are several commits waiting to be pushed.
I had simillar errors while creating two (or more) branches of code, then merging them, commit, and push. I guess this is caused by some bugs in git algorithm.
Solved the issue.
Steps I took to fix this:
Open Preferences -> General -> Network -> generate new SSH (RSA) key
Go to github, add the key to your keys
Removed the default revs settings that Zend studio made
Pushed to origin/master.
Success \o/