Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 456 Bytes

github-flow.md

File metadata and controls

23 lines (18 loc) · 456 Bytes

GitHub Flow

GitHub Flow is a lightweight workflow for continuous delivery.

Steps

  1. Create a branch for each feature or fix.
  2. Make changes and commit:
git add .
git commit -m "Add login feature"
  1. Push the branch:
git push origin feature-login
  1. Open a pull request (PR) for review.

  2. Merge the PR and deploy.

Explanation

  • Focuses on continuous integration and delivery.

  • Simplifies the workflow for small teams.