5

I am studying with the CVS in Android Studio and after that, my folder and all files are now color red. How can I make it back to normal again? Please check the link of the picture and see it.

http://imageshack.com/a/img199/8914/3sws.png

After further checking, probably this is the cause? I'm not sure if this error message means that it is succesfful.

http://img11.imageshack.us/img11/6766/btac.png

This is my git (Git Release Notes (Git-1.8.4-preview20130916) I got this from this website. http://msysgit.github.io/

Thanks, Tok

4

4 回答 4

7

我不知道你的编程环境,但在我的,使用 Git (CLI)

  • 当没有执行任何提交操作时,我更改的项目文件(!= 存储库)以红色显示。

    • 提交操作后,此文件变为绿色。

这只是一个想法,但您应该尝试提交您的更改或取消(签出)它们。

于 2013-10-09T06:48:20.770 回答
5

在android studio中切换到项目视图,选中项目右键>>> git >>>>然后添加

等待几秒钟,您的文件将改变颜色。前提是您已经完成了推送并正确配置了 git 设置,如下所示: Github/Bitbucket

**1.创建存储库

2.进入androidstudio:vcs::添加版本控制

3.在安卓终端:git init

4.git add --all>>>git remote add origin https:\yourrepo url

5.git commit -m "初始提交"

6.git push -u origin master(或你创建的任何分支) 刷新(github/bitbucket页面)

于 2018-02-19T22:51:01.500 回答
3

将您的 android 项目从 android 视图更改为项目视图

确保您单击了您的项目文件夹 在您的工具栏上 1. 单击 VCS
2. 单击 Git
3. 单击添加

您的所有项目文件都将添加到 git

于 2017-04-05T10:57:54.400 回答
1

一个月前我遇到了同样的问题,我对这个问题很困惑。要解决此问题,您应该删除.idea/vcs.xml,然后重新启动 Android Studio。祝你好运!

于 2015-12-10T03:54:23.593 回答