git fsck --full - свободный объект. Как исправить исчезнувший объект в git?

Это не проблема CRC, все было хорошо, до линтинга. Это произошло после lint:fix изменения, но я не уверен, может быть, .editorconfig с root = true начать уничтожать некоторые файлы в папке проекта - понятия не имею.

git fsck --full
error: inflate: data stream error (invalid distance too far back)
error: unable to unpack header of .git/objects/25/bbda994d2ab2009078d58a5f33f78c827610b2
error: 25bbda994d2ab2009078d58a5f33f78c827610b2: object corrupt or missing: .git/objects/25/bbda994d2ab2009078d58a5f33f78c827610b2
Checking object directories: 100% (256/256), done.
Checking objects: 100% (29350/29350), done.
error: inflate: data stream error (invalid distance too far back)
error: unable to unpack 25bbda994d2ab2009078d58a5f33f78c827610b2 header
fatal: loose object 25bbda994d2ab2009078d58a5f33f78c827610b2 (stored in .git/objects/25/bbda994d2ab2009078d58a5f33f78c827610b2) is corrupt

Я поставил tslint конфиг с LF и VScode начинает менять файлы в фоновом режиме, я думаю.

Как я могу решить эту проблему? Есть идеи? Или как я могу исправить потерянный объект, который не основан в logs, в gitk --all? Я не могу git checkoutне могу git stash...


.editorconfig:

# Editor configuration, see http://editorconfig.org
root = true

[*]
charset = utf-8
end_of_line = lf
indent_style = space
indent_size = 2
insert_final_newline = true
trim_trailing_whitespace = true

[*.md]
max_line_length = off
trim_trailing_whitespace = false

Конфигурация TSLint:

{
  "extends": ["tslint:latest", "tslint-config-prettier"],
  "rules": {
    "align": [
      true,
      "parameters",
      "arguments",
      "statements"
    ],
    "ban": false,
    "class-name": true,
    "comment-format": [
      true,
      "check-space"
    ],
    "curly": false,
    "eofline": true,
    "forin": true,
    "indent": [
      true,
      "spaces"
    ],
    "linebreak-style": [true, "LF"],
    "interface-name": false,
    "jsdoc-format": true,
    "label-position": true,
    "max-line-length": [
      true,
      120
    ],
    "member-ordering": [
      true,
      "public-before-private",
      "static-before-instance",
      "variables-before-functions"
    ],
    "object-literal-sort-keys": false,
    "no-any": false,
    "no-arg": true,
    "no-bitwise": true,
    "no-console": [
      true,
      "debug",
      "info",
      "time",
      "timeEnd",
      "trace"
    ],
    "no-construct": true,
    "no-constructor-vars": false,
    "no-debugger": true,
    "no-shadowed-variable": true,
    "no-duplicate-variable": true,
    "no-empty": true,
    "no-eval": true,
    "no-internal-module": true,
    "no-require-imports": true,
    "no-submodule-imports": [
      true, "rxjs",
      "@angular/platform-browser",
      "@angular/core/testing",
      "@angular/cdk/collections"
    ],
    "no-string-literal": true,
    "no-switch-case-fall-through": true,
    "no-trailing-whitespace": true,
    "no-unused-expression": true,
    "no-unused-variable": [true, "react"],
    "no-use-before-declare": true,
    "no-var-keyword": true,
    "no-var-requires": false,
    "one-line": [
      true,
      "check-open-brace",
      "check-catch",
      "check-else",
      "check-whitespace"
    ],
    "quotemark": [
      true,
      "single",
      "jsx-double"
    ],
    "radix": true,
    "semicolon": [
      true,
      "always"
    ],
    "switch-default": true,
    "triple-equals": [
      true,
      "allow-null-check"
    ],
    "typedef": [
      false,
      "call-signature",
      "parameter",
      "property-declaration",
      "member-variable-declaration"
    ],
    "typedef-whitespace": [
      true, {
        "call-signature": "nospace",
        "index-signature": "nospace",
        "parameter": "nospace",
        "property-declaration": "nospace",
        "variable-declaration": "nospace"
      }
    ],
    "use-strict": [
      false,
      "check-module",
      "check-function"
    ],
    "variable-name": [
      true,
      "ban-keywords"
    ],
    "whitespace": [
      true,
      "check-branch",
      "check-decl",
      "check-operator",
      "check-separator",
      "check-type"
    ]
  }
}

0 ответов

Другие вопросы по тегам