Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for gitignore (0.07 sec)

  1. maven-tests/.gitignore

    Yuri Schimke <******@****.***> 1752321957 +0100
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Jul 12 12:05:57 UTC 2025
    - 7 bytes
    - Viewed (0)
  2. .gitignore

    Shinsuke Sugaya <******@****.***> 1756611074 +0900
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Sun Aug 31 03:31:14 UTC 2025
    - 112 bytes
    - Viewed (0)
  3. .gitignore

    Shinsuke Sugaya <******@****.***> 1756628340 +0900
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 1K bytes
    - Viewed (0)
  4. .gitignore

    Jesse Wilson <******@****.***> 1748357882 -0400
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue May 27 14:58:02 UTC 2025
    - 345 bytes
    - Viewed (0)
  5. .gitignore

    Shinsuke Sugaya <******@****.***> 1756627257 +0900
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 93 bytes
    - Viewed (0)
  6. .gitignore

    Elliotte Rusty Harold <******@****.***> 1749564206 +0000
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Tue Jun 10 14:03:26 UTC 2025
    - 207 bytes
    - Viewed (0)
  7. .gitignore

    Shinsuke Sugaya <******@****.***> 1756618372 +0900
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Aug 31 05:32:52 UTC 2025
    - 385 bytes
    - Viewed (0)
  8. docs/en/docs/virtual-environments.md

    <div class="termy">
    
    ```console
    $ python -m pip install --upgrade pip
    
    ---> 100%
    ```
    
    </div>
    
    ## Add `.gitignore` { #add-gitignore }
    
    If you are using **Git** (you should), add a `.gitignore` file to exclude everything in your `.venv` from Git.
    
    /// tip
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 22.4K bytes
    - Viewed (0)
  9. docs/ko/docs/virtual-environments.md

    ```console
    $ echo "*" > .venv/.gitignore
    ```
    
    </div>
    
    /// details | 명령어 상세 설명
    
    * `echo "*"`: 터미널에 `*` 텍스트를 "출력"합니다 (다음 설명에서 조금 바뀝니다)
    * `>`: 왼쪽 명령어의 출력 내용을 터미널에 출력하지 않고, 오른쪽에 지정된 파일로 **기록(write)** 하라는 의미입니다.
    * `.gitignore`: 출력된 텍스트가 기록될 파일 이름입니다.
    
    그리고 Git에서 `*`는 "모든 것"을 의미합니다. 따라서 `.venv` 디렉터리 안의 모든 것을 무시하게 됩니다.
    
    이 명령어는 다음과 같은 내용을 가진 `.gitignore` 파일을 생성합니다:
    
    
    ```gitignore
    *
    ```
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri May 30 13:10:41 UTC 2025
    - 25.8K bytes
    - Viewed (0)
  10. .github/CODEOWNERS

    testing/integ-test/
    version.txt
    released-versions.json
    
    # Dev setup
    .idea                                   @gradle/bt-developer-productivity
    .editorconfig                           @gradle/bt-developer-productivity
    .gitignore                              @gradle/bt-developer-productivity
    .gitattributes                          @gradle/bt-developer-productivity
    gradle/                                 @gradle/bt-developer-productivity
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Mon Jul 28 01:45:03 UTC 2025
    - 10.9K bytes
    - Viewed (0)
Back to top