Commit (EN)

Concept

A storage point in a Git repository with changes and description

Commit process in Git

flowchart LR   A[Changes in working directory] --> B[git add]   B --> C[Staging area]   C --> D[git commit]   D --> E[Git repository]   E --> F[Remote repository] 

In context

  • Typically used together with Branch, Merge and Rebase
  • Related to: Commit Hash, Commit Message, HEAD, Branch
  • Example usage: "git commit -m 'Fix Login error with empty passwords'"
Quelle: AI Generated