GitHub Desktop or Git CLI?
GitHub Desktop or Git CLI?
GitHub Desktop or Git CLI?
You're viewing a single thread.
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:
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).