Git Is Simpler Than You Think
nfarina.com
Git Is Simpler Than You Think
1–10 of 122 posts
Re: Git Is Simpler Than You Think
#2You can do some things to make it easier on yourself (and others) but it's not simple. You find out how un-simple it is when you hit one of those magical corner cases.
Don't get me wrong, I love Git. I far prefer it over SVN and CVS. But it's not simple.
Re: Git Is Simpler Than You Think
#3I'd also recommend The Git Parable (http://tom.preston-werner.com/2009/05/19/the-git-parable.htm...) for anyone who hasn't read it. Different focus, but also helpful for understanding git's philosophy.
Re: Git Is Simpler Than You Think
#4Re: Git Is Simpler Than You Think
#5No, actually, it's not. And that post proves it. You can do some things to make it easier on yourself (and others) but it's not simple. You find out how un-simple it is when you hit one of those magical corner cases. Don't get me wrong, I love Git. I far prefer it over SVN and CVS. But it's not simple.
Because it's simple bash scripts but distributed and decentralised it has a steep learning curve.
No, no git is not simple. It's really complicated.
Re: Git Is Simpler Than You Think
#6No, actually, it's not. And that post proves it. You can do some things to make it easier on yourself (and others) but it's not simple. You find out how un-simple it is when you hit one of those magical corner cases. Don't get me wrong, I love Git. I far prefer it over SVN and CVS. But it's not simple.
The fact that the contents of the .git folder can be explained in ~2000 words (10 min of reading) is impressive--this would be impossible with a more complicated data model.
FWIW, compare:
http://www.google.com/search?q=what%20is%20in%20.svn%20folde...?
with
http://www.google.com/search?q=what%20is%20in%20.git%20folde...?
All the results for the svn search are about getting rid of these folders -- nothing explaining their contents.
Re: Git Is Simpler Than You Think
#7Thanks -- great article. This is the most readable and straight-forward explanation of git's internals that I've seen (and I've read a bunch of articles/books/etc. looking for resources to help others learn git). I'd also recommend The Git Parable ( http://tom.preston-werner.com/2009/05/19/the-git-parable.htm... ) for anyone who hasn't read it. Different focus, but also helpful for understanding git's philosophy.
Re: Git Is Simpler Than You Think
#8Re: Git Is Simpler Than You Think
#9No, actually, it's not. And that post proves it. You can do some things to make it easier on yourself (and others) but it's not simple. You find out how un-simple it is when you hit one of those magical corner cases. Don't get me wrong, I love Git. I far prefer it over SVN and CVS. But it's not simple.
The point of this article is that if you take the time to learn how git is actually constructed, the CLI becomes a lot more bearable, and is less likely to leave you in distress when Something Unexpected Happens.
Re: Git Is Simpler Than You Think
#10So what was the cause of the original error and how did you fix it?
1. Resolve the conflict and continue rebasing.
2. Drop the conflicting change and continue rebasing.
3. Abort the rebase operation.