mirror of
https://github.com/deepspeedai/DeepSpeed.git
synced 2025-10-20 15:33:51 +08:00
The file was re-organized in da652d0[^1] with better documentation, but
that unfortunately made the syntax invalid. According to the gitignore
documentation:[^2]
> A line starting with # serves as a comment. Put a backslash ("`\`") in
> front of the first hash for patterns that begin with a hash.
I needed to move the comments for Git to parse the file properly. To
maintain readability, I added an extra `#` to the comments at the top of
each section.
[^1]:
da652d0e0b
[^2]: https://git-scm.com/docs/gitignore/2.43.0#_pattern_format
Co-authored-by: Logan Adams <114770087+loadams@users.noreply.github.com>
56 lines
932 B
Plaintext
56 lines
932 B
Plaintext
## Ignore Python compiled files
|
|
*.pyc
|
|
|
|
## Ignore IDE-specific files and directories
|
|
# JetBrains IDE settings
|
|
.idea/
|
|
# Visual Studio Code settings
|
|
.vscode/
|
|
# Theia IDE settings
|
|
.theia/
|
|
|
|
## Ignore temporary and backup files
|
|
# General backup files
|
|
*~
|
|
# Vim swap files
|
|
*.swp
|
|
|
|
## Ignore log files
|
|
*.log
|
|
|
|
## Ignore a specific generated file
|
|
deepspeed/git_version_info_installed.py
|
|
|
|
## Ignore Python bytecode cache
|
|
__pycache__
|
|
|
|
## Build + installation data
|
|
# Build artifacts
|
|
build/
|
|
# Distribution files
|
|
dist/
|
|
# Compiled shared objects
|
|
*.so
|
|
# Deepspeed package info
|
|
deepspeed.egg-info/
|
|
# Build information
|
|
build.txt
|
|
|
|
## Website generated files
|
|
# Jekyll generated site
|
|
docs/_site/
|
|
# Generated documentation
|
|
docs/build
|
|
docs/code-docs/source/_build
|
|
docs/code-docs/_build
|
|
docs/code-docs/build
|
|
# SASS cache
|
|
.sass-cache/
|
|
# Jekyll cache
|
|
.jekyll-cache/
|
|
.jekyll-metadata
|
|
|
|
## Testing data
|
|
# Saved checkpoints for testing
|
|
tests/unit/saved_checkpoint/
|