mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 20:02:09 +02:00

* git-a*: add and update Korean translation * git-b*: add and update Korean translation * git-*: add and update Korean translation * Update git-standup.md --------- Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
20 lines
712 B
Markdown
20 lines
712 B
Markdown
# git check-attr
|
|
|
|
> 각 경로명에 대해 해당 경로명에 대한 gitattribute로 지정되지 않았는지, 설정되었는지 또는 해제되었는지 속성을 나열합니다.
|
|
> 더 많은 정보: <https://git-scm.com/docs/git-check-attr>.
|
|
|
|
- 파일의 모든 속성 값을 확인:
|
|
|
|
`git check-attr --all {{경로/대상/파일}}`
|
|
|
|
- 파일의 특정 속성 값을 확인:
|
|
|
|
`git check-attr {{속성}} {{경로/대상/파일}}`
|
|
|
|
- 특정 파일들의 모든 속성 값을 확인:
|
|
|
|
`git check-attr --all {{경로/대상/파일1 경로/대상/파일2 ...}}`
|
|
|
|
- 하나 이상의 파일에 대한 특정 속성 값을 확인:
|
|
|
|
`git check-attr {{속성}} {{경로/대상/파일1 경로/대상/파일2 ...}}`
|