this post was submitted on 09 Nov 2023
1262 points (98.2% liked)

Programmer Humor

32371 readers
475 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] Bipta@kbin.social 3 points 1 year ago (1 children)

Wow this looks great. Amend an old commit dealing with a rebase? Sign me up!

[–] zalgotext@sh.itjust.works 5 points 1 year ago* (last edited 1 year ago) (1 children)

git rebase -i origin/main (or whatever branch you're rebasing on), then read the instructions that come up in the editor window

[–] corytheboyd@kbin.social 10 points 1 year ago* (last edited 1 year ago)

Read… instructions? I love teaching people that git very often prints out what you should do next.

git: “to continue, resolve conflicts, add files, and run rebase —continue”
dev: …time to search stack overflow

All that said… just use lazygit. It does help to know CLI git first to put things in context, but if you do, no need to punish yourself every day by not using a UI.