git clone https://github.com/sapnendra/filterusers.git
cd filterusers
git checkout -b add-<your-username>-card
Branch names are lowercase-with-dashes. One task = one branch.
users Arrayusers = [{}].
Image URL tips
index.html directly, or run with “Live Server” in VS
Code.
git add .
git commit -m "Add <your-name> card"
git push -u origin add-<your-username>-card
sapnendra/filterusers, base branch: main.
Add <your-name> card
git commit -m "Address review: updated image URL"
git push
img vs
image).
main).
origin) and open a PR to
the original.
main, rebase,
fix conflicts:
git checkout main
git pull upstream main # add the original repo as 'upstream' first
git checkout add-<your-username>-card
git rebase main
# fix conflicts, then:
git add .
git rebase --continue
git push --force-with-lease