GitHub Flow is a lightweight workflow for continuous delivery.
- Create a branch for each feature or fix.
- Make changes and commit:
git add .
git commit -m "Add login feature"
- Push the branch:
git push origin feature-login
-
Open a pull request (PR) for review.
-
Merge the PR and deploy.
-
Focuses on continuous integration and delivery.
-
Simplifies the workflow for small teams.