Synchronize Git and Mercurial Ignore Files

Easily organize your excludes by language or operation system. As your blocks evolve, synchronize your entire development space effortlessly.

Turn This

_site
node_modules

*.sql
*.sqlite

.DS_Store
._*
.Spotlight-V100
.Trashes
[Tt]humbs.db

.env

Into This

# Project Specific
_site

#<syncblock id="git.ignore.nodejs">
# NodeJS
node_modules
.env
#</syncblock>

#<syncblock id="git.ignore.sqlite">
# SQLLite Files
*.sql
*.sqlite
#</syncblock>

#<syncblock id="git.ignore.os">
# Operating System Files
.DS_Store
._*
.Spotlight-V100
.Trashes
[Tt]humbs.db
#</syncblock>

Create Starter Templates

Never worry about having to manually update your ignore files with your latest excludes. Create an initial template and let SyncBlock populate the blocks when creating new projects:

# Project Specific
_site

#<syncblock id="git.ignore.nodejs">
#</syncblock>

#<syncblock id="git.ignore.sqlite">
#</syncblock>

#<syncblock id="git.ignore.os">
#</syncblock>

© 2024 OCERIS, Inc. All rights reserved.