add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

@@ -0,0 +1,20 @@
# git check-attr
> 对于每个路径名,列出每个属性是未指定、已设置还是未设置为该路径名的 gitattribute。
> 更多信息:<https://git-scm.com/docs/git-check-attr>。
- 检查文件上所有属性的值:
`git check-attr --all {{path/to/file}}`
- 检查文件上特定属性的值:
`git check-attr {{attribute}} {{path/to/file}}`
- 检查特定文件上所有属性的值:
`git check-attr --all {{path/to/file1 path/to/file2 ...}}`
- 检查一个或多个文件上特定属性的值:
`git check-attr {{attribute}} {{path/to/file1 path/to/file2 ...}}`