docs(claude): add git workflow section for credential-required commands

This commit is contained in:
Lorenz Hilpert
2025-10-17 13:42:12 +02:00
parent 696db71ad5
commit a83929c389

View File

@@ -140,6 +140,11 @@ npx nx affected:test
- Use Nx's affected commands to optimize CI/CD pipelines
- Project graph visualization helps understand dependencies: `npx nx graph`
## Git Workflow
- **IMPORTANT**: Git commands that require credentials (e.g., `git fetch`, `git pull`, `git push`) must be executed by the user, not by Claude Code
- Claude Code can execute local git commands that don't require credentials (e.g., `git status`, `git log`, `git diff`, `git checkout`, `git merge`, `git add`, `git commit`)
- When a git command requiring credentials is needed, Claude Code should inform the user and wait for them to execute it
## Development Notes
- Use start target to start the application. Only one project can be started: isa-app
- Make sure to have a look at @docs/guidelines/testing.md before writing tests