←back to thread

94 points vincent_s | 3 comments | | HN request time: 0s | source
1. pictur ◴[] No.40918347[source]
Git is already as simple as possible with its own commands. I feel like we are making simple things more complicated with tools like this. If I start using this tool instead of git, I will probably start doing something hacky at some point. I don't want that. I don't want a history that keeps changing and getting weird with the use of rebase/squash. I don't think conflicts are a problem as long as a single history is kept up to date properly with git. The smoother the history, the easier it is to merge.
replies(2): >>40919600 #>>40920772 #
2. Kuraj ◴[] No.40919600[source]
> I don't think conflicts are a problem as long as a single history is kept up to date properly with git.

That is easy when you work alone. It becomes more difficult as your team grows in size.

3. lawn ◴[] No.40920772[source]
Weird take as Git is making things much more complex than they need to be, which is proven by Mercurial and Jujutsu that are much more intuitive while being as powerful.