Change remote repository credentials (authentication) on Intellij IDEA 14

The easiest of all the above ways is to: Go to Settings>>Appearance & Behavior>>System Settings>>Passwords Change the setting to not store passwords at all Invalidate and restart IntelliJ Go to Settings>>Version Control>>Git>>SSH executable: Build-in Do a fetch/pull operation Enter the password when prompted Again go to Settings>>Appearance & Behavior>>System Settings>>Passwords This time select store passwords … Read more

How to cleanup garbage in remote git repo

We think we had the same problem today and were able to solve it without contacting Bitbucket support, as below. Note that the method discards last commit from the repo – so you probably want to have its backup. Bitbucket reported that our repo was about 2.1GB, while when cloned, it only took about 250MB … Read more

‘cannot open git-upload-pack’ error in Eclipse when cloning or pushing git repository

Might also be bad SSL cert, fix the server If you have a GIT server with an outdated or self-signed SSL cert fix the server, afterwards everything should run fine. Insecure Hotfix: Let the client accept any certificate The following solution is just a mere hotfix on client side and should be avoided as it … Read more