137

我用 android studio 设置了我的 Github,一切正常,但现在的问题是,我似乎无法关闭,或者摆脱版本控制以再次正常使用 IDE。

这意味着不会显示错误,因此很难调试。

那么如何在 Android Studio 中关闭版本控制(VCS)?

4

5 回答 5

253

To disable VCS in Android Studio on a Mac do the following:

Android Studio > Preferences...

enter image description here

In the Preferences window, select Version Control and under Directory choose VCS dropdown to be <none>

enter image description here

Don't forget to click "Apply" in the general Preferences buttons at the bottom.


For 2021...

It would seem that Android Studio nowadays does not automatically start with version control turned on for a new project.

The default seems to be "off" at the beginning of a new project.

(It does conveniently make a ".gitignore" file for you but it does not default to trying to use version control.)

However, if later you do manually yourself start using git in the folder in question, Studio does turn on vcs inside Studio, i.e. exactly as seen in the image above. In that case you'll have turn it off inside Studio, exactly as shown above.

于 2013-10-22T15:48:47.923 回答
64

在 Android Studio 1.2.x中

文件 -> 设置 -> 版本控制

这里显示了根目录,按(-)按钮删除。

于 2015-06-01T09:19:30.943 回答
19

其他答案对我不起作用,所以我正在添加我的解决方案。

这条消息让我发疯:

在此处输入图像描述

我对其他建议有疑问,因为我的设置不允许我保存版本控制的更改。

在此处输入图像描述

所以我进入版本控制/忽略文件并删除了该项目的所有忽略文件。

在此处输入图像描述

在此处输入图像描述

然后当我点击版本控制

在此处输入图像描述

在这个答案中找到了这个。

于 2016-01-05T00:17:44.913 回答
18

VCS 是一个项目特定的设置,您可以通过在标题File -> Settings下进行检查来修改它。Version Control

Plugins或者,您可以禁用标题下的特定 VCS 插件。

注意:我没有将 GitHub 用作 VCS,但您仍然应该在 IDE 中得到错误显示(语法检查)。VCS 的使用不应该禁用它,因为这会使 IDE 的使用完全没有意义。

于 2013-06-11T07:30:03.170 回答
7

您可以删除vcs.xml文件,它将删除与您的应用程序连接的 VCS。'vcs.xml' 文件可以在此位置“ YourProject\.idea\vcs.xml ”中找到

于 2016-11-20T18:24:25.050 回答