github command
zip -r dist-folder.zip dist
rm dist-folder.zip
git status
git add .
git commit -m "push"
git push origin main
git config --global user.email "your-email@example.com"
git config --global user.name "Your Name"
git push origin HEAD --heath cheak up
# Step 1: Stage all your new changes and modifications
git add .
# Step 2: Commit the changes with a descriptive message
git commit -m "Describe the changes you made"
# Step 3: Push the changes to your main branch
git push