docs: add missing git add command to contribution workflow#18
docs: add missing git add command to contribution workflow#18Mohit-001-hash wants to merge 1 commit into
Conversation
There was a problem hiding this comment.
Code Review
This pull request updates the contribution guidelines in the README.md file to include the staging step (git add .) before committing changes. The reviewer pointed out a discrepancy where a project structure update mentioned in the pull request description was missing from the actual changes.
Important
The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.
|
|
||
| # Commit changes | ||
| # Stage and commit changes | ||
| git add . |
There was a problem hiding this comment.
The pull request description mentions that the root folder in the project structure diagram was updated from my-react-app/ to commdesk/. However, this change is not included in the current diff (line 25 of README.md still reads my-react-app/). Please add this modification to the pull request to keep the documentation consistent with the description.
Summary
This PR resolves a workflow friction point in the "Contribution" section. The provided bash snippet for contributing previously skipped the staging step (
git add .) before committing. If a user copy-pasted the commands exactly, it resulted in a Git error. I added the missinggit add .command to ensure the instructions are functional out-of-the-box for new open-source contributors. I also corrected a small scaffolding leftover in the project structure diagram (my-react-app->commdesk).Closes #None (just a documentation fix)
Type of Change
What Changed
git add .to the terminal commands in the Contribution section.my-react-app/tocommdesk/to match the repository name.How to Test
No tests required (Documentation only).
Screenshots / Recordings
None
Checklist
console.log, debug code, or commented-out blocksnpm run lintpasses locallynpm run type-check)Accessibility (UI changes only)
None
Additional Context
None