# Step 1: Clone (only once)
git clone <repo-url>
# Step 2: Work inside the folder
cd project-folder
# Step 3: Pull latest changes (do this daily)
git pull origin master
# Step 4: Make changes to your files
# Step 5: Add and commit changes
git add .
git commit -m "Added fetch_user function"
# Step 6: Push to GitHub
git push origin master