A simple guide for getting started with git
41–50 of 132 posts
Re: A simple guide for getting started with git
#42Nice. I will definitely show this to people who are new to SCM. How about adding Linux install instructions? Something like, apt-get install git for Debian based distros.
pixeldude, Incoming pull request, in case you don't see it. https://github.com/rogerdudler/git-guide/pull/2
Re: A simple guide for getting started with git
#43Re: A simple guide for getting started with git
#44The giant font doesn't make it any easier to understand. Stuff like 'your local repository consists of three "trees" maintained by git' only makes sense to people who already know how git works.
Re: A simple guide for getting started with git
#45What's the point of including instructions for downloading git for MacOSX, when it's already installed in the system by default?
http://apple.stackexchange.com/questions/18470/why-is-git-no...
Re: A simple guide for getting started with git
#46I don't get this. Sure, the tutorial looks very pretty, but it does not explain any concepts. "Create a new repository." What is a repository? What do I do with it? The HEAD is a tree "which points to the last commit you've made". Huh? A tree can point? The one in my garden can't. Also, what's a commit? I thought "commit" was a verb, not a noun. And so on. It's nice that people want to make something as complex as gi…
Thanks for your feedback! I completely understand your point. Maybe it would make sense to make another guide with an intro on Source Control Management systems and link it in the git guide. Currently, you need to have a little bit of knowledge on an SCM. But I will think about it.
Re: A simple guide for getting started with git
#47I don't get this. Sure, the tutorial looks very pretty, but it does not explain any concepts. "Create a new repository." What is a repository? What do I do with it? The HEAD is a tree "which points to the last commit you've made". Huh? A tree can point? The one in my garden can't. Also, what's a commit? I thought "commit" was a verb, not a noun. And so on. It's nice that people want to make something as complex as gi…
Thanks for your feedback! I completely understand your point. Maybe it would make sense to make another guide with an intro on Source Control Management systems and link it in the git guide. Currently, you need to have a little bit of knowledge on an SCM. But I will think about it.
Re: A simple guide for getting started with git
#48I don't get this. Sure, the tutorial looks very pretty, but it does not explain any concepts. "Create a new repository." What is a repository? What do I do with it? The HEAD is a tree "which points to the last commit you've made". Huh? A tree can point? The one in my garden can't. Also, what's a commit? I thought "commit" was a verb, not a noun. And so on. It's nice that people want to make something as complex as gi…
I agree with you in general, but I feel like you take a wrong perspective of it. The author takes a top-down approach to teaching, which basically means that he thought about this tutorial from his perspective, someone that was already intimately familiar with the details. This, as you pointed out, is wrong. If this is a tutorial for beginners, you need to have some explanation of what "checking-out" means, what "tre…
Re: A simple guide for getting started with git
#49What is that font and why does it look awful on Windows?
Re: A simple guide for getting started with git
#50The giant font doesn't make it any easier to understand. Stuff like 'your local repository consists of three "trees" maintained by git' only makes sense to people who already know how git works.
I'm always happy about better wording. Any ideas?
Honestly, I'm not even sure you need to talk about "trees". The first chapter of Pro Git doesn't mention them at all, and this section describes the working dir, the index and HEAD without using the word: http://progit.org/book/ch1-3.html Instead he talks about "snapshots" and "stages".