# Git Cheatsheet
## Metadata
**Status**:: #x
**Zettel**:: #zettel/fleeting
**Created**:: [[2025-11-15]]
**Parent**:: [[♯ Cheatsheets]] [[♯ Git]]
## Synopsis
### Copy Commit Message
```
git log -1 --format=%B <commit_hash>
```
Or, equivalently:
```
git show -s --format=%B <commit_hash>
```