pastermil@sh.itjust.works to Programmer Humor@lemmy.ml · 1 year agoCommitsh.itjust.worksimagemessage-square9linkfedilinkarrow-up132arrow-down10 cross-posted to: programmer_humor@programming.dev
arrow-up132arrow-down1imageCommitsh.itjust.workspastermil@sh.itjust.works to Programmer Humor@lemmy.ml · 1 year agomessage-square9linkfedilink cross-posted to: programmer_humor@programming.dev
minus-squareLemoineFairclough@sh.itjust.workslinkfedilinkEnglisharrow-up1·1 year agoDoesn’t git status tell you what to do? use “git add <file>…” to mark resolution use “git commit” to conclude merge I always use git status to check what is appropriate before doing anything else, since the right thing to do can sometimes be different, like after using git rebase when a break command was used vs when a squash command resulted in a conflict.
Doesn’t
git statustell you what to do?I always use
git statusto check what is appropriate before doing anything else, since the right thing to do can sometimes be different, like after usinggit rebasewhen abreakcommand was used vs when asquashcommand resulted in a conflict.