# Picks on 2025-12-28
**Created**:: [[2025-12-28]]
## Show which git branch is out of sync:
```
git log --graph --oneline --simplify-by-decoration --branches --decorate-refs "refs/heads/*" --decorate-refs "refs/remotes/*" "main^.."
```
where `main^..` strips history before the branch `main`.
#git