diff --git a/GEMINI.md b/GEMINI.md index 853540d..1d000fd 100644 --- a/GEMINI.md +++ b/GEMINI.md @@ -6,3 +6,25 @@ When asked to fix or check formatting/linting issues, or before committing code ```bash npm run format && composer lint && npm run lint ``` + +## Git Workflow & Push +When asked to push: +1. Always create a new branch from `main` (pulling the latest changes first): + ```bash + git checkout main && git pull origin main && git checkout -b + ``` +2. Switch to that branch. +3. Use atomic commits where applicable. +4. Run formatting and linting checks before committing: + ```bash + npm run format && composer lint && npm run lint + ``` +5. Never force push (`--force` or `-f`). +6. Push the branch to the remote repository: + ```bash + git push -u origin + ``` +7. Create a Pull Request (PR) with a clear, respective title and description linking relevant issues. + + + diff --git a/resources/views/app.blade.php b/resources/views/app.blade.php index cd0f9d5..a2bebaf 100644 --- a/resources/views/app.blade.php +++ b/resources/views/app.blade.php @@ -18,7 +18,7 @@ } catch (_) {} })(); - + {{-- Browser chrome: top status bar + bottom nav bar (Chrome / Edge / Samsung Internet) --}}