A modern e-commerce web app optimized for user browsing experience.
- Joseph Camarena Castro
- Andrew Liu Ty Hosn
- Ty Hosn
https://trello.com/b/L4G6C1cU/project-management-fec
- Reviews List
- Individual Review Tile
- Sort Options
- Rating Breakdown (Filtering)
- Product Breakdown (Factors)
- Write New Review
- Keyword search - Low Priority
- Questions List
- Individual Question
- Search Questions
- More Answered Questions
- Add a Question
- Add an Answer Modal
Pull down recent main to local main branch Switch to your branch and merge that main into your branch Then push your branch up to gh and create pull request pull from group github main branch to local machine
git checkout main
git fetch origin
git reset --hard origin/main
pull a branch that does not yet exist on your machine
git fetch origin [branchName]:[branchName]
create a new branch
git checkout -b <branch_name>
push the new branch to the group github.
git push -u origin <branch_name>
create a pull request to merge to "main" branch
git pull origin main