error: unable to read askpass response from '/home/.cache/Google/AndroidStudio2021.1/tmp/intellij-git-askpass-local.sh' in ubuntu android studiio
Asked Answered
C

10

25

I am trying to push my code to my bit bucket repository but from last few days after update from bit bucket, I have to use token to push code. But I don't know where to add token. Could anyone let me know the entire process for android studio. I have also gone through with This documentation .But didn't get any idea about how to use it in android studio.

Cicelycicenia answered 19/3, 2022 at 5:37 Comment(0)
P
55

As for me I use android studio, I came across the same issue; where I was unable to make push command to my github repo, that is after an update of my IDE version to chipmunk.

Solution that worked for me:

  1. Enable the Credential helper - In the IDE select File -> Settings -> Version Control -> Git -> Mark the check box for use Credential helper. Then apply changes.

  2. Invalidate and clear caches - In the IDE select File -> Invalidate caches.

Phonograph answered 8/6, 2022 at 13:30 Comment(5)
Works on Mac tooBerry
Worked for me with Linux+Github and after a recent pycharm updateMendelism
Invalidating and clearing caches was what did it for me.Magpie
Its not working on WSL (2 on win 10)Inflect
Doing this still giving error. But I've fixed this by setting origin url with token like: git remote set-url origin https://<USER>:<MYTOKEN>@github.com/<REPO_URL>.gitInflect
M
10
git config --global --unset credential.helper

and then git pull from terminal

git pull

then will ask your username and password

Mammalian answered 7/6, 2022 at 9:36 Comment(2)
If you use a Token add it when asked for username, then enter nothing on the password!Classy
This solution worked for me in RStudio IDE on Mac after equivalent problem emerged during a PAT changeover.Lorenzetti
C
7

after several hours of research I found the best soultion for this I dont know this is the right way to use it or not. But its working fine.refer this answer...Refer this

Cicelycicenia answered 19/3, 2022 at 13:56 Comment(2)
I find that 50 percent of The development time for android is dealing with bugs and errors of the ide, endless kinds of errors will happen.Starter
True @RonenFestingerCicelycicenia
A
7

You may try with below flow, If you are using android studio in Windows :

File -> Settings -> Version Control -> Git / Check "User credential Helper"

It's working for me.

Acknowledgment answered 12/7, 2022 at 5:48 Comment(0)
T
3

Simply update your git version :

$ git update-git-for-windows
Teter answered 26/4, 2022 at 5:36 Comment(0)
G
1

I also encounter this problem, I am using mac and I solved it by

  1. cmd + space
  2. type keychain access
  3. search github
  4. delete the keychains found
  5. delete github on my android studio (android studio -> preferences -> version control -> Github)
  6. re add github on my android studio using new personal access token

Hope this help, Thanks

Germanic answered 16/5, 2022 at 13:0 Comment(0)
T
1

I just had the same error. I downloaded the project again and tried again, it gave an error. Then I updated the token in my GitHub account then I turned Android Studio on and off and it worked for me.

Torey answered 16/5, 2022 at 20:32 Comment(0)
H
1

For Bitbucket create your "app password" on bitbucket console. Under your Avatar ->Personal Settings ->Access Management ->App Password.

Once done, copy app password and push from the terminal enter -

git remote set-url origin https://<Your_Account_Name>:<App_Password>@bitbucket.org/<Your_Account_Name>/<Repo_Name>.git

For Github create a new GitHub token, Once done copy token and push your project from the terminal :

git push

you'd be asked to input your username

Username for 'https://github.com': use actual GitHub username not email

Then you'd be asked to enter your password

Password for 'https://"username"@github.com': this is where you paste the token you just created

commit will be pushed after this

Hypotonic answered 24/1, 2023 at 14:58 Comment(1)
My case Android studio project github can use command same of answer For Bitbucket for push code again.Eidetic
L
0

Interesting case of PyCharm update:

OS: Ubuntu 18.04 In my case the PyCharm got updated and the existing open project was using older version.

Solution : Just closed the existing older PyCharm and open the project in newer version

Lightheaded answered 1/8, 2022 at 5:44 Comment(0)
O
0

If you're accessing with ssh key you don't need to insert credentials, you only need to clear the IDE cache. Go to "File" and then click on "Invalidate caches" and mark only the check "Clear VCS Log caches and indexes".

Oriane answered 28/8, 2023 at 10:13 Comment(1)
As it’s currently written, your answer is unclear. Please edit to add additional details that will help others understand how this addresses the question asked. You can find more information on how to write good answers in the help center.Villa

© 2022 - 2024 — McMap. All rights reserved.