hypnotic_nerd@programming.dev to Programmer Humor@programming.devEnglish · 1 year agoGitHub Desktop or Git CLI?programming.devimagemessage-square157fedilinkarrow-up1495arrow-down130
arrow-up1465arrow-down1imageGitHub Desktop or Git CLI?programming.devhypnotic_nerd@programming.dev to Programmer Humor@programming.devEnglish · 1 year agomessage-square157fedilink
minus-squarefckreddit@lemmy.mllinkfedilinkarrow-up62·1 year agoWell, you learn four commands and hope for the best.
minus-squareValmond@lemmy.mindoki.comlinkfedilinkarrow-up17·1 year agofetch, reset --hard, checkout -b and cherry-pick? :-D
minus-squarexmunk@sh.itjust.workslinkfedilinkarrow-up12·1 year agoNah, rebase -i, squash, fsck and reflog
minus-squareRikudou_Sage@lemmings.worldlinkfedilinkEnglisharrow-up9·edit-21 year 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-up8·1 year 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-squareValmond@lemmy.mindoki.comlinkfedilinkarrow-up4·1 year 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-up2·1 year agoFsck is File System Check - realistically you should never need to use it.
minus-squaremuix@infosec.publinkfedilinkarrow-up10·edit-21 year agoMore like clone, pull, commit, and push --force >:-D
Well, you learn four commands and hope for the best.
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)
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
^^