- Add note to .gitignore explaining fizzbuzz/.git is intentional - FizzBuzz maintains its own git history to demonstrate TDD progression - Facilitators can use 'cd fizzbuzz && git log' to see RED-GREEN commits
22 lines
345 B
Text
22 lines
345 B
Text
# Dart build artifacts
|
|
.dart_tool/
|
|
.packages
|
|
pubspec.lock
|
|
build/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.iml
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Temporary files
|
|
*.log
|
|
*.tmp
|
|
|
|
# FizzBuzz nested git repository (keep the .git for demo purposes)
|
|
# The fizzbuzz/.git directory contains TDD progression commits
|
|
# It's intentionally kept separate from the main workshop repo
|