Skip to content

Commit

Permalink
Update .gitignore [Adding comments , Improved documentation] (microso…
Browse files Browse the repository at this point in the history
…ft#4631)

Refine and clarify the .gitignore file by adding more descriptive
comments to explain the purpose of each rule. This improves the
readability and maintainability of the file.

- Added comments to explain each ignore rule
- Improved documentation for better understanding

---------

Co-authored-by: Logan Adams <loadams@microsoft.com>
Co-authored-by: Logan Adams <114770087+loadams@users.noreply.github.com>
  • Loading branch information
3 people authored Nov 9, 2023
1 parent 8ad187d commit da652d0
Showing 1 changed file with 28 additions and 19 deletions.
47 changes: 28 additions & 19 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,31 +1,40 @@
# Ignore Python compiled files
*.pyc
.idea/
*~
*.swp

# Ignore IDE-specific files and directories
.idea/ # JetBrains IDE settings
.vscode/ # Visual Studio Code settings
.theia/ # Theia IDE settings

# Ignore temporary and backup files
*~ # General backup files
*.swp # Vim swap files

# Ignore log files
*.log

# Ignore a specific generated file
deepspeed/git_version_info_installed.py

# Ignore Python bytecode cache
__pycache__

# Build + installation data
build/
dist/
*.so
deepspeed.egg-info/
build.txt

# Website
docs/_site/
docs/build
build/ # Build artifacts
dist/ # Distribution files
*.so # Compiled shared objects
deepspeed.egg-info/ # Deepspeed package info
build.txt # Build information

# Website generated files
docs/_site/ # Jekyll generated site
docs/build # Generated documentation
docs/code-docs/source/_build
docs/code-docs/_build
docs/code-docs/build
.sass-cache/
.jekyll-cache/
.sass-cache/ # SASS cache
.jekyll-cache/ # Jekyll cache
.jekyll-metadata

# Testing data
tests/unit/saved_checkpoint/

# Dev/IDE data
.vscode
.theia
tests/unit/saved_checkpoint/ # Saved checkpoints for testing

0 comments on commit da652d0

Please sign in to comment.