You're viewing a single thread.
View all comments
154
comments
CLI
Though I will admit it took me a while to get there
git add -i is where the true magic begins32 0 ReplyTIL!
9 0 Replygit log --graph --oneline --all
2 0 Reply
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#34467298And 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).
2 0 Reply
You've viewed 154 comments.
Scroll to top