Mercurial > famtree
view .hgignore @ 0:a17a4894f4bd draft default tip
Initial commit converting git to mercurial
author | Alfred Burgess <aburgess@ucc.asn.au> |
---|---|
date | Sun, 14 Apr 2024 19:35:23 +0800 |
parents | |
children |
line wrap: on
line source
syntax: glob # Ignore Git .git/ # Ignore logs logs/ # Ignore compiled binaries *.exe *.dll *.out # Ignore user-specific files .idea/ .vscode/ # Ignore system files .DS_Store Thumbs.db # Ignore node modules node_modules/ # Ignore compiled TypeScript *.js *.js.map # Ignore Go binary # Ignore Docker artifacts # Ignore dependencies vendor/ # Ignore compiled Python files *.pyc __pycache__/ # Ignore compiled Java files *.class # Ignore temporary files *.tmp # Ignore editor backup files *~ *.swp *.swo *.swn *.swm *.swl # Ignore environment variables file .env # Ignore build artifacts build/ dist/ # Ignore database migrations database/migrations/*.sql