Squash
advancedDefinition
Mashing several small checkpoints together into a single tidy one before they get merged into the main project. The little 'oops, fixed a typo' and 'tried something' moments disappear, and what's left is one clean, meaningful entry in the history.
In the wild
A developer makes 12 little checkpoints over a day while figuring out a tricky feature: many of them messy. Before sending it for review, she squashes them into one neat checkpoint titled 'Add export-to-PDF feature.' The team's history stays clean and easy to read.
More from Git & Collaboration
Branch
A separate copy of a project's files where you can experiment without affecting anyone else. It's like saving a draft of a document under a new name and editing it freely: when you're happy, you can merge your version back into the official one.
Cherry-pick
Grabbing one specific change from somewhere else in the project's history and applying it to where you're working: without bringing along any of the other changes that came around it. It's how teams move a single fix into a place that needs it.
Clone vs Fork
Cloning means copying a project to your own computer so you can work on it locally. Forking means making your own personal copy of someone else's project up on the internet, which you can then change freely and later offer your changes back to the original.
Commit
A saved snapshot of your work at a particular moment, with a short note describing what you changed. Each commit is a checkpoint you can come back to. The history of an entire project is just one commit after another, going back to its very first day.
HEAD
A bookmark that points to the version of the project you're currently looking at. Wherever HEAD is, that's the version of the files sitting on your computer. When you switch branches or jump to an older snapshot, HEAD moves with you.
Merge
Combining the work from one branch into another, so the two histories come together. Merging is how a feature that was being built off to the side gets folded back into the main version that everyone uses.