summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorJ. B. Rainsberger <me@jbrains.ca>2020-03-16 09:56:58 -0300
committerJesse Duffield <jessedduffield@gmail.com>2020-03-25 09:18:25 +1100
commit65b8cef1b80eba7f623b559fc6c94149073a206b (patch)
tree49f00ef0aa66a70fe3374b0250270978aab15f7d /README.md
parent5d460e1e5e002ae3f4deb6b75e77b5916d672cc5 (diff)
Fixed an incorrect criticism of git in the README.
It's true that parts of git are genuinely difficult to use, so we don't need to overstate that difficulty in order to state the value proposition of lazygit. If `git add -p` can't split a hunk any further, one is not _completely_ stuck, but one does need to edit the hunk in a way that, after years, I still need a few attempts to get right. The fact that many otherwise-experienced git users don't even know that one can do that is itself a testament to the UX problems that lazygit is trying to address.
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index a33999c84..65e128106 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@
A simple terminal UI for git commands, written in Go with the [gocui](https://github.com/jroimartin/gocui 'gocui') library.
-Rant time: You've heard it before, git is _powerful_, but what good is that power when everything is so damn hard to do? Interactive rebasing requires you to edit a goddamn TODO file in your editor? *Are you kidding me?* To stage part of a file you need to use a command line program stepping through each hunk and if a hunk can't be split down any further but contains code you don't want to stage, bad luck? *Are you KIDDING me?!* Sometimes you get asked to stash your changes when switching branches only to realise that after you switch and unstash that there weren't even any conflicts and it would have been fine to just checkout the branch directly? *YOU HAVE GOT TO BE KIDDING ME!*
+Rant time: You've heard it before, git is _powerful_, but what good is that power when everything is so damn hard to do? Interactive rebasing requires you to edit a goddamn TODO file in your editor? *Are you kidding me?* To stage part of a file you need to use a command line program stepping through each hunk and if a hunk can't be split down any further but contains code you don't want to stage, you have to edit a diff in a way that almost nobody gets right the first time? *Are you KIDDING me?!* Sometimes you get asked to stash your changes when switching branches only to realise that after you switch and unstash that there weren't even any conflicts and it would have been fine to just checkout the branch directly? *YOU HAVE GOT TO BE KIDDING ME!*
If you're a mere mortal like me and you're tired of hearing how powerful git is when in your daily life it's a powerful pain in your ass, lazygit might be for you.