hypnotic_nerd@programming.dev to Programmer Humor@programming.devEnglish · 2 年前GitHub Desktop or Git CLI?programming.devimagemessage-square147linkfedilinkarrow-up1420arrow-down128
arrow-up1392arrow-down1imageGitHub Desktop or Git CLI?programming.devhypnotic_nerd@programming.dev to Programmer Humor@programming.devEnglish · 2 年前message-square147linkfedilink
minus-squarefckreddit@lemmy.mllinkfedilinkarrow-up61·2 年前Well, you learn four commands and hope for the best.
minus-squareValmond@lemmy.mindoki.comlinkfedilinkarrow-up15·2 年前fetch, reset --hard, checkout -b and cherry-pick? :-D
minus-squareRikudou_Sage@lemmings.worldlinkfedilinkEnglisharrow-up9·edit-22 年前Must 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-up9·2 年前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)
minus-squareValmond@lemmy.mindoki.comlinkfedilinkarrow-up4·2 年前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)?
minus-squarexmunk@sh.itjust.workslinkfedilinkarrow-up3·2 年前Fsck is File System Check - realistically you should never need to use it.
minus-squaremuix@infosec.pubcakelinkfedilinkarrow-up9·edit-22 年前More 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
^^