this post was submitted on 31 Jul 2025
24 points (96.2% liked)

General Programming Discussion

8899 readers
7 users here now

A general programming discussion community.

Rules:

  1. Be civil.
  2. Please start discussions that spark conversation

Other communities

Systems

Functional Programming

Also related

founded 6 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[โ€“] Tanoh@lemmy.world 2 points 4 weeks ago (1 children)

I usually just check out another copy in another directory, say I am working on Foo. foo/ is the dev playground and clean-foo/ for a clean checkout from master.

I know you can do it all with commands but I just find it easier to diff between directories or check how things are in master without touching the dev dir.

[โ€“] atzanteol@sh.itjust.works 1 points 4 weeks ago

When you do that you can't compare branches in the same working copy in different directories. You need to create remotes between the two working copies and push/pull between them.

e.g. "git log --graph ..my-branch" or "git diff my-branch master" where my-branch and master are in different directories.