Simple Git Workflow

Simple Git Workflow

⬅ Version FR

This workflow makes collaborative work easier by avoiding pull requests (which will be used later).

🛠 At project initiation

📆 Everyday

git switch -c feature/footer
git pull origin main
git merge feature/footer
git push origin main

🏁 At the end of the project (or at first demo)