浏览代码

Adds another git warning

main
Eric Amodio 6 年前
父节点
当前提交
81dc577362
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. +2
    -1
      src/git/git.ts

+ 2
- 1
src/git/git.ts 查看文件

@ -61,7 +61,8 @@ const GitWarnings = {
foundButNotInRevision: /Path \'.*?\' exists on disk, but not in/i,
headNotABranch: /HEAD does not point to a branch/i,
noUpstream: /no upstream configured for branch \'(.*?)\'/i,
unknownRevision: /ambiguous argument \'.*?\': unknown revision or path not in the working tree|not stored as a remote-tracking branch/i
unknownRevision: /ambiguous argument \'.*?\': unknown revision or path not in the working tree|not stored as a remote-tracking branch/i,
mustRunInWorkTree: /this operation must be run in a work tree/i
};
interface GitCommandOptions extends RunOptions {

正在加载...
取消
保存