如何在Android Studio中更改与Github上的新存储库关联的默认名称

问题描述 投票:0回答:1

每当我在Github上共享项目时,通常会有一个与存储库关联的默认名称。如下所示。

enter image description here

如何在android studio或其他任何地方将该名称更改为我想要的默认名称

android-studio github repository
1个回答
0
投票

我通过在终端上运行跟踪来做到这一点

git config --global user.email "<new_email>" 
git config --global user.name "<new_name>"

瞧!

© www.soinside.com 2019 - 2024. All rights reserved.