Informationen zu Commits
Similar to saving a file that's been edited, a commit records changes to one or more files in your branch. Git assigns each commit a unique ID, called a SHA or hash, that identifies:
- Die jeweiligen Änderungen
- Der Zeitpunkt der Änderungen
- Wer die Änderungen vorgenommen hat
Wenn Du einen Commit durchführst, musst Du eine Commit-Mitteilung hinzufügen, in der die Änderungen kurz beschrieben werden.
You can add a co-author on any commits you collaborate on. Weitere Informationen findest Du unter „Commit mit mehreren Autoren erstellen.“
Rebasing allows you to change a series of commits and can modify the order of the commits in your timeline. For more information, see "About git rebase."
Weiterführende Informationen
- "Committing and reviewing changes to your project" on GitHub Desktop