Back to browse
Commit cherry-picking by copy-and-paste in a Mac GUI

Commit cherry-picking by copy-and-paste in a Mac GUI

by Cykelero·Apr 29, 2026·1 point·0 comments

AI Analysis

●●SolidCozySolve My Problem

System clipboard integration lets you cut and paste commits between branches like text.

Strengths
  • Direct clipboard mapping turns complex git cherry-pick flows into simple Cmd+C/V actions.
  • Cut-and-paste workflow allows moving commits across branches without temporary stashes.
  • Instant undo mechanism reduces the mental load and fear of rewriting Git history.
Weaknesses
  • macOS-only Electron app limits reach compared to cross-platform CLI tools.
  • Niche focus on history rewriting may not replace full-featured Git clients for daily use.
Target Audience

Mac developers who frequently rewrite Git history or manage multiple branches

Similar To

GitKraken · Sourcetree · Fork

Post Description

Strangely, git GUIs are often slower, more restrictive than the git CLI. They really shouldn't be.

One aspect is cherry-picking, where you can't just copy a hash somewhere, and paste it at the top of your branch, the way you would on the command line. With this update to my git client Retcon, I'm adding cherry-picking, and it does work by direct copy-paste.

(Retcon is my macOS GUI specifically for rewriting history. It's meant to be faster than the CLI, by virtue of making mistakes instant to undo, and removing a ton of mental load)

So you can copy a hash from anywhere (copy a commit in Retcon itself, or get the hash from your GitHub, or somewhere else) and then just ⌘V in Retcon, and the commit's pasted. No extra steps.

One advantage of doing it like this is that you can also start by ⌘X cutting a commit, before pasting it: this way you've moved it, instead of copying it. That's handy if you ever commit to the wrong branch by accident.

This all folds in with Retcon's existing strengths: you're not blocked by conflicts (you can keep moving commits around when paused on a conflict; you can even see what commits are upcoming); you can undo anything with ⌘Z, even a conflict resolution; and in general you just have a clearer view of your history, since you're directly operating on it.

Retcon is definitely not a generalist git client. Right now it doesn't even support cloning repos. It's very specifically focused on history rewrites, and making those both much more pleasant, and much faster, then even in the git CLI. I think it succeeds, although you can check the trial and see if that's not true for you. Before I wrote Retcon I was an avid user of `git rebase -i`, so I wrote it for myself at first, because it felt that these could be better.

Probably important to mention that this is a Mac-only app (less work for me, lets me focus on the details) and is a subscription (higher chance of me being able to keep on developing the app, instead of needing to look for another job). I hope you all like it!

Similar Projects