2

我的崇高文本中的 Git diff 引发以下错误

error: Malformed value for push.default: simple
error: Must be one of nothing, matching, tracking or current.
fatal: bad config file line 7 in /Users/fizer/.gitconfig

如果我从 .gitconfig 中删除push.default: simple。然后它工作。但是当我做git push时,它抱怨它需要push.default: simple

如何解决?

4

1 回答 1

2

Sublime 使用的是旧版本的 git。如果您在 linux 上which git,请在终端中获取输出并更改您的 git 包设置,如下所示:

{
  "git_command": "/new/path/to/git"
}
于 2014-03-30T11:29:00.903 回答