Git Record
		
		
		
		
		
		Jump to navigation
		Jump to search
		
		
	
A Git Record is a source code control record that is part of a Git repository.
- Context:
- It can (typically) be retrieved and interpreted by Git Commands.
 - It can (typically) be identified by a unique SHA-1 Hash.
 - It can (often) be a Git Commit Record, a snapshot of the project at a specific point in time.
 - It can be a Git Tree Record, representing a directory structure of the project.
 - It can be a Git Blob Record, holding the data for a file.
 - It can be a Git Tag Record, marking a specific point in the repository's history.
 - …
 
 - Example(s):
- a Git Commit Record, such as: ...
 - a Git Tree Record, such as: ...
 - a Git Blob Record, such as: ...
 - a Git Tag Record, such as: ...
 - …
 
 - Counter-Example(s):
- a Subversion Record from a Subversion repository.
 - a CVS Record from a CVS repository.
 - …
 
 - See: Git Branch, Git Tag, Git Log.