hypnotic_nerd@programming.dev to Programmer Humor@programming.devEnglish · 11 months agoGitHub Desktop or Git CLI?programming.devimagemessage-square157fedilinkarrow-up1510arrow-down132
arrow-up1478arrow-down1imageGitHub Desktop or Git CLI?programming.devhypnotic_nerd@programming.dev to Programmer Humor@programming.devEnglish · 11 months agomessage-square157fedilink
minus-squareValmond@lemmy.mindoki.comlinkfedilinkarrow-up18·11 months agofetch, reset --hard, checkout -b and cherry-pick? :-D
minus-squarexmunk@sh.itjust.workslinkfedilinkarrow-up13·11 months agoNah, rebase -i, squash, fsck and reflog
minus-squareRikudou_Sage@lemmings.worldlinkfedilinkEnglisharrow-up11·edit-211 months agoMust be an interesting work if you never add, commit or push. Edit: How the hell did you get the repo without clone?
minus-squarexmunk@sh.itjust.workslinkfedilinkarrow-up11·11 months agoPshaw, real programmers write out the contents of .git by hand. (Also, it was a joke, the last two commands I listed are ones you’ll ideally never need in your life)
minus-squareovercast5348@lemmy.worldlinkfedilinkarrow-up3·10 months agoI was scared of reflog too. Had to use it for the first time recently after I accidentally’d a branch that I hadn’t pushed to remote yet. I was so glad that I could recover it all in <5 commands.
minus-squareValmond@lemmy.mindoki.comlinkfedilinkarrow-up6·11 months agoreflog saved my life once after a stupid misshap. All rebase are belong to us (onto, rebase, and ofc interactive) but what’s fsck (I don’t squash personally)?
minus-squarexmunk@sh.itjust.workslinkfedilinkarrow-up3·11 months agoFsck is File System Check - realistically you should never need to use it.
minus-squaremuix@infosec.publinkfedilinkarrow-up11·edit-211 months agoMore like clone, pull, commit, and push --force >:-D
fetch, reset --hard, checkout -b and cherry-pick?
:-D
Nah,
rebase -i
,squash
,fsck
andreflog
Must be an interesting work if you never
add
,commit
orpush
.Edit: How the hell did you get the repo without
clone
?Pshaw, real programmers write out the contents of
.git
by hand.(Also, it was a joke, the last two commands I listed are ones you’ll ideally never need in your life)
I was scared of reflog too. Had to use it for the first time recently after I accidentally’d a branch that I hadn’t pushed to remote yet. I was so glad that I could recover it all in <5 commands.
reflog saved my life once after a stupid misshap.
All rebase are belong to us (onto, rebase, and ofc interactive) but what’s fsck (I don’t squash personally)?
Fsck is File System Check - realistically you should never need to use it.
More like clone, pull, commit, and push --force
>:-D
push origin head
^^