🚀 New to .git?

Start with our 5-minute quickstart guide to deploy your first project with zero configuration.

Start Quick Guide →
Deploy ⚡ Beginner

Deploy Your First Project

Learn how to connect your repository and push code to production in under 60 seconds with zero configuration.

$ git clone https://git.dev/my-app
$ git deploy --prod
✓ Deployed in 2.1s
CI/CD 🔹 Intermediate

Configure CI/CD Pipelines

Set up automated build, test, and deployment workflows using our visual editor or YAML configuration.

# .git/ci.yml
pipeline:
  stages: [build, test, deploy]
  strategy: parallel
Security 🔹 Intermediate

Enterprise SSO & SAML Setup

Secure your organization with single sign-on, role-based access control, and SAML 2.0 integration.

$ git config auth --saml --provider okta
✓ SSO enabled for 42 teams
API 🔸 Advanced

Automate with the .git API

Programmatically manage deployments, pipelines, and teams using our RESTful and GraphQL endpoints.

$ curl -X POST /v1/deploy \\
  -H "Authorization: Bearer $TOKEN"
Deploy 🔹 Intermediate

Edge Caching & CDN Strategy

Optimize global performance with intelligent caching rules, cache invalidation, and edge function deployment.

# .git/edge.yml
cache:
  ttl: 3600
  purge: on_deploy
CI/CD 🔸 Advanced

AI-Powered Code Review

Leverage machine learning to catch bugs, suggest optimizations, and enforce team standards automatically.

$ git pr --review-ai
✓ 3 issues found, 2 auto-fixed