Skip to content

Commit

Permalink
[Common] Add more items to .gitignore (#4115)
Browse files Browse the repository at this point in the history
This commit...

1. excludes Default/ and User/ packages

   That's useful if whole repository is cloned to `${stdatadir}/Packages`
   to test/develop all bundled packages in a single ST instance.

   Make sure never to add a package with such special name to this repo.

2. excludes known python cache files as they are never to be published,
   if auto-created by any tool by accident.
  • Loading branch information
deathaxe authored Dec 16, 2024
1 parent b2d4937 commit 5d34111
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
# MacOS specific ignores
.DS_Store

# excluded packages
/Default/
/User/

# python cache files
__pycache__/
*.pyc

0 comments on commit 5d34111

Please sign in to comment.