← Documents Documentation/.gitignore GitHub 원문 ↗

Linux 6.18.37 · Documentation metadata

Documentation .gitignore

Linux Documentation tree에서 생성물과 Python bytecode를 Git 추적 대상에서 제외하는 규칙입니다.

Source pathDocumentation/.gitignore
Source versionLinux v6.18.37
TranslationDUJINLABS 전문 번역 + 해설

요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.

1. 요약·해설

원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.

문서 build 작업 공간의 제외 규칙

.gitignore:1-3

Documentation build가 만든 output directory와 Python 실행 중 생성되는 .pyc bytecode를 source tree 변경으로 취급하지 않도록 지정합니다.

2. 영어 원문 전체

번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.

원문 전체 펼치기
1 # SPDX-License-Identifier: GPL-2.0-only
2 output
3 *.pyc
4

3. 한국어 전문 번역

영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.

Git 제외 규칙

1-3

첫 행은 이 파일이 GPL-2.0-only 조건을 따른다는 SPDX license identifier다.

output
*.pyc

output은 Documentation build 결과 directory를 제외한다. *.pyc는 모든 Python compiled bytecode file을 제외한다.