@hypnotic_nerd@programming.dev to Programmer Humor@programming.devEnglish • 1 year agoGitHub Desktop or Git CLI?programming.devimagemessage-square177fedilinkarrow-up1503arrow-down130
arrow-up1473arrow-down1imageGitHub Desktop or Git CLI?programming.dev@hypnotic_nerd@programming.dev to Programmer Humor@programming.devEnglish • 1 year agomessage-square177fedilink
minus-square@criticalimpact@lemm.eelinkfedilinkEnglish30•edit-21 year agoCLI Though I will admit it took me a while to get there git add -i is where the true magic begins
minus-square@hakunawazo@lemmy.worldlinkfedilink2•1 year agoAlso part of the Cli magic is a pretty git log tree like that: https://stackoverflow.com/questions/1838873/visualizing-branch-topology-in-git/34467298#34467298 And a proper diff tool like vim: git config --global diff.tool vimdiff git config --global difftool.prompt false (Current diff could be closed with :qa. All diffs could be closed with :cq).
CLI
Though I will admit it took me a while to get there
git add -i is where the true magic begins
TIL!
git log --graph --oneline --all
Also part of the Cli magic is a pretty git log tree like that:

https://stackoverflow.com/questions/1838873/visualizing-branch-topology-in-git/34467298#34467298
And a proper diff tool like vim:
git config --global diff.tool vimdiff git config --global difftool.prompt false
(Current diff could be closed with :qa. All diffs could be closed with :cq).