Change Github account in Android Studio

后端 未结 11 600
我在风中等你
我在风中等你 2021-02-05 02:37

I have used one Github account to push an android project to Github from Android Studio. Now I have created another account on Github and want to push my another android project

11条回答
  •  借酒劲吻你
    2021-02-05 03:16

    I had the same problem, all you need to do is open your shell and type--

    $git config --global user.name [your username]
    $git config --global user.email [your email]

    since you probably logged in with git using a different account

提交回复
热议问题