site banner

Small-Scale Question Sunday for November 23, 2025

Do you have a dumb question that you're kind of embarrassed to ask in the main thread? Is there something you're just not sure about?

This is your opportunity to ask questions. No question too simple or too silly.

Culture war topics are accepted, and proposals for a better intro post are appreciated.

2
Jump in the discussion.

No email address required.

I don't want to ever have to see or care about staged files. My files are either being worked on or have been committed. There is no such thing as a staged file.

Maybe take a look at jujutsu: https://github.com/jj-vcs/jj

It uses git as a back-end so it's completely compatible with git, but it follows the idea that you always have a commit in the works:

Working-copy-as-a-commit: Changes to files are recorded automatically as normal commits, and amended on every subsequent change. This "snapshot" design simplifies the user-facing data model (commits are the only visible object), simplifies internal algorithms, and completely subsumes features like Git's stashes or the index/staging-area.