Versionskontrolle
Git und verwandte Werkzeuge zur Versionsverwaltung von Code.
- Conventional Commits Versionskontrolle
Conventional Commits is a convention for commit messages with a fixed format — type, optional scope and description — as the basis for automated changelogs and semantic versioning.
- Git Versionskontrolle
Git is a distributed version control system that records changes to files as a sequence of commits — a baseline requirement for most AI coding workflows.
- Git Branch Versionskontrolle
A branch is an independent line of development in a Git repository — a moving pointer to a commit, allowing parallel work without conflicts with the main code.
- Git Worktree Versionskontrolle
Git worktree allows you to have multiple branches of a repo checked out simultaneously in different directories — without stashing or constant branch-switching.
- GitHub Versionskontrolle
GitHub is the largest hosting platform for Git repositories — with pull requests, code review, issues and CI/CD via GitHub Actions as the standard toolkit for software development.
- GitLab Versionskontrolle
GitLab is a Git hosting platform with an integrated DevOps stack — repository, CI/CD, issue tracking, container registry and security scans in one tool, optionally self-hosted.
- GitUp Versionskontrolle
GitUp is an open-source Git client for macOS with a visual live graph of the repository history and snapshot-based rollback.
- Pull Request Versionskontrolle
A pull request is a proposal to merge changes from one branch into another — the standard workflow for code review and collaborative work on a repository.