Per using-git-worktrees skill — local .worktrees/ is for isolated development workspaces, not tracked content. .
24 lines
305 B
Plaintext
24 lines
305 B
Plaintext
# Rust
|
|
/target
|
|
**/target
|
|
**/*.rs.bk
|
|
*.pdb
|
|
|
|
# Cargo.lock is committed (this is an application workspace, not a library)
|
|
|
|
# Env / secrets
|
|
.env
|
|
.env.*
|
|
*.pem
|
|
*.key
|
|
|
|
# Editor / OS
|
|
.DS_Store
|
|
*.swp
|
|
.idea/
|
|
.vscode/
|
|
|
|
# Local worktrees (per using-git-worktrees skill; isolation, not content)
|
|
.worktrees/
|
|
worktrees/
|