You can find the showcase page right here. Yes, you need to fork the repository if you want to submit a PR.
Thanks for using Material-UI 馃槃 .
My cloned version has only 4 items in an appList array. Please see the screenshot. But from the link that you provided there are much more items.
1) Why is it so? What do I do wrong?
2) How do I add my app's screenshot to your images/showcase/ folder?
{
title: 'SplitMe',
author: 'Olivier Tassinari',
img: 'images/showcase/splitme.png', // <== this image
link: 'https://splitme.net/',
},
Thank you

Q: _My cloned version has only 4 items_
A: You need to pull the latest changes from the remote git repository.
Here is how to do it:
Q: Do I need to run add and commit commands before I push changes to upstream?
Explanation:
I have made my changes. And when I run git status, I have files that are modified and untracked.

The step 4 of your contributing rules (see below) says I need to run git push --set-upstream origin my-topic-branch right after my changes are made. So it is not clear if I need to run add and commit commands before pushing my changes to upstream.
My question is, do I need to run add and commit commands before I push changes?
- Fork the Material-UI repository on Github
- Clone your fork to your local machine
git clone --depth 1 [email protected]:<yourname>/material-ui.git
(For thenextbranch, add the-b nextflag to the above command.)- Create a branch
git checkout -b my-topic-branch- Make your changes, lint, then push to github with
git push --set-upstream origin my-topic-branch.- Visit github and make your pull request.
Ok, no worries, I've got the answer on SO
https://stackoverflow.com/questions/44234440/do-i-need-to-run-add-and-commit-before-i-push-changes-to-upstream-making