Founded 2008, acquired by Microsoft in 2018. GitHub turned Git from a developer tool into a social platform: a profile, a follower graph, a pull-request inbox, and a CI runner. Most open source lives here. Most companies use it for private code too.
← Back to Cross-Cutting ToolsBranch protection rules enforce required reviews, passing checks, and signed commits before merge. Merge queue serializes merges so each PR is tested against the exact state of main it will land on — no more "green PR breaks main" surprises.
Workflows live in .github/workflows/*.yml. They react to events (push, pull_request, schedule, workflow_dispatch, ...) and run jobs on Linux, Windows, or macOS runners. The marketplace has thousands of pre-built actions — checkout, setup-node, deploy-to-cloud — that you compose like Lego.
@v1. A compromised action runs with your secrets.