Julia Evans on Nostr: been trying to list every piece of state in your git repository that you need to be ...
been trying to list every piece of state in your git repository that you need to be careful about. So far I have:
- your current branch
- if you're in detached HEAD state
- staged files
- unstaged & untracked files
- whether or not you're in the middle of a merge (or rebase, or cherry-pick)
- if you're in the middle of a rebase, which stage of the rebase you're at exactly
- what you have in the stash (since it can be deleted permanently if you `stash pop`)
what did I miss?
- your current branch
- if you're in detached HEAD state
- staged files
- unstaged & untracked files
- whether or not you're in the middle of a merge (or rebase, or cherry-pick)
- if you're in the middle of a rebase, which stage of the rebase you're at exactly
- what you have in the stash (since it can be deleted permanently if you `stash pop`)
what did I miss?