Source Code Commit Record
(Redirected from software commit record)
Jump to navigation
Jump to search
A Source Code Commit Record is a data record of a change set made to the source code of a software project in a version control system.
- Context:
- It can (typically) be created when a developer makes changes to the source code in a Software Version Control System.
- It can (typically) include a Commit ID.
- It can (typically) include a Commit Author, a the developer who made the commit.
- It can (typically) represent a specific version of the source code at the time of the commit.
- It can (often) include a Commit Message that describes the changes made in the commit.
- It can (often) include a Commit Timestamp.
- It can (often) be a part of a Commit History (in a Software Version Control System).
- …
- Example(s):
- a Git Commit Record in a Git system.
- a Subversion Commit Record in a Subversion system.
- the changeset at
https://github.com/owner/repo/commit/abcd1234
. - ...
- Counter-Example(s):
- a Git Branch or a Git Tag.
- a Code Review or a Pull Request.
- ...
- See: Version Control System, Git, Subversion, Mercurial.