Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion projectGuide/easyshop-kind.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ This is just a preview want more details, then use `tree` inside the repo.

> ### 1. Clone the repository and navigate to the project directory
> ```bash
> git clone https://github.com/iemafzalhassan/EasyShop.git
> git clone https://github.com/iemafzalhassan/easyshop--demo.git
> cd EasyShop
Comment on lines +113 to 114
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

Fix directory name mismatch after updating the repo URL
After cloning easyshop--demo.git without specifying a target folder, the default directory will be easyshop--demo, not EasyShop. The subsequent cd EasyShop will fail. You can either clone into EasyShop explicitly or update the cd command to match the cloned folder.

Apply one of the following diffs:

Option A: Clone into the original directory name

- git clone https://github.com/iemafzalhassan/easyshop--demo.git
+ git clone https://github.com/iemafzalhassan/easyshop--demo.git EasyShop

Option B: Use the actual repo folder name

- git clone https://github.com/iemafzalhassan/easyshop--demo.git
- cd EasyShop
+ git clone https://github.com/iemafzalhassan/easyshop--demo.git easyshop--demo
+ cd easyshop--demo
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
> git clone https://github.com/iemafzalhassan/easyshop--demo.git
> cd EasyShop
> git clone https://github.com/iemafzalhassan/easyshop--demo.git EasyShop
> cd EasyShop
Suggested change
> git clone https://github.com/iemafzalhassan/easyshop--demo.git
> cd EasyShop
> git clone https://github.com/iemafzalhassan/easyshop--demo.git easyshop--demo
> cd easyshop--demo
🧰 Tools
🪛 markdownlint-cli2 (0.17.2)

113-113: Multiple spaces after blockquote symbol
null

(MD027, no-multiple-space-blockquote)


114-114: Multiple spaces after blockquote symbol
null

(MD027, no-multiple-space-blockquote)

> ```

Expand Down