Home > Software design >  Can't clone a flutter project - GitLab
Can't clone a flutter project - GitLab

Time:08-16

I am trying to clone a flutter project in Android Studio, but unfortunately, Once I add the Git Url and hit clone button, It shows me processing dialog and after just 2 seconds it closed and showing me error as below :

enter image description here

What will be the possible solution? Thanks.

CodePudding user response:

Goto Android studio -> settings -> VCS -> git -> Tick Use credential helper

open terminal of andorid studio

use this command

git fetch

-> git config --global credential.helper store <app password>

and try to pull/clone from android studio

EDIT

enter image description here

CodePudding user response:

For this, We can use Github Desktop instead.

Just install it and you are good to go after logged in to your Git account.

  • Related