Version Control Workflows

Common branching and collaboration workflows.

  • DevOps
  • 10 entries
  • 5 sections
  • CC0 — public domain

The data

0

Workflow
Centralized
Description
All developers commit to a single shared branch.

1

Workflow
Feature Branch
Description
Each feature is developed in an isolated branch and merged via pull request.

2

Workflow
Gitflow
Description
Uses master, develop, feature, release, and hotfix branches.

3

Workflow
Forking
Description
Contributors fork the repository and submit pull requests.

4

Workflow
Trunk-Based
Description
Developers commit to a single trunk frequently with short-lived branches.

Fetch the same bytes

The static files are identical to what the API returns, but with no rate limit and no server round trip. Use the API when you want a query and a content type; use the files when you want to cache one document.

curl "https://yjtoon.com/api/dataset/version-control-workflows?format=toon"
const res = await fetch(
  "https://yjtoon.com/static-data/dataset/version-control-workflows.toon"
);
const toon = await res.text();

Rate limit: 120 requests per minute per IP, no key and no signup. API reference →

Topics

  • devops
  • git
  • workflow