使用git-plus后,Atom文件会有不同的颜色

时间:2017-06-22 12:49:19

标签: git atom-editor

在我初始化原子上的git-plus之后,我的所有文件都变成了这种颜色,直到我提交它为止。我已经卸载了git-plus,所有这些仍然存在。甚至没有.git文件夹的存储库在树视图中仍然具有此色调。是否有任何方法可以使它在跟踪提交之前至少使其成为.git存储库?

enter image description here

1 个答案:

答案 0 :(得分:1)

如果您在.git存储库中,我不确定是否只能使色调发生,也许其他人可以提供帮助。

我个人也不喜欢树视图git颜色,所以我完全删除了它们。您可以通过在样式表中添加以下内容来完成此操作:

// Remove Git highlighting from tree view
.status-modified,
.status-added,
.status-renamed,
.status-removed {
  color: inherit;
  background-color: inherit;

  &.directory > .list-item {
    color: inherit !important;
    background-color: inherit !important;
  }

  &.directory.selected > .list-item {
    color: inherit !important;
    background-color: inherit !important;
  }
}