Home - Languages & Tools
Pro Git
Price:
$17.99
$34.99
& 2-Day * Free Nationwide Shipping! (* details)
Availability: Usually ship in 24 hours if sold by Amazon.com
Product Details
| Binding: | Paperback |
|---|---|
| EAN: | 9781430218333 |
| Label: | Apress |
| Feature: | |
| Publisher: | Apress |
| Studio: | Apress |
Editorial Reviews
Developers need to keep their code from unintended changes. Pro Git is the version control book for all open source developers and quite a few commercial ones, regardless of whether they are hobbyists or professionals. Developed by Linus Torvalds himself, it has taken the open source world by storm and is set to become the standard for open source development.
Customer Reviews
i can highly recommend it!
large team-based project. Due to this, I was afraid I would get bored of the
book very easily since I had already learned a decent amount of the material.
This was most assuredly not the case. Chacon has done an excellent job in
writing a book that serves as an excellent beginners guide and a quick reference
at the same time.
The first part of the book is devoted to looking at multiple version control
systems along with a history of version control. Chacon also makes it very
easy to set Git up in a number of environments so that you can get started right
away. The first half of the book is dedicated towards basics of the
system, advanced features, such as rebasing, and setting up a remote server for
git. The next half of the book contains a wealth of knowledge regarding best
practices when using Git, additional tools and configuration options, and
finally, nitty-gritty details on how Git works under the hood.
My biggest complaint would have to be the fact that the material on using Git
remotely is scattered in a couple different parts of the book. This makes it
slightly difficult to find specific information regarding remote work.
Overall, Chacon did an excellent job with Pro Git. After reading this book I
was able to easily fill in the holes in my knowledge and felt significantly more
comfortable maintaining a Git system for personal and team projects.
Pro Git is published by Apress. On 250 odd pages, Scott manages to bring Git across in a very vivid way. Lots of sample sessions and a huge number of figures make Git come alive and fun to use! (Only at one point while reading the book, did I think: "why is he telling me that?", but it can't have been too bad, because upon writing this, I can't find the place.)
Pro Git starts off easily enough, but it does so at a fast pace, for which I was grateful: you get past the basics on page 45, which means the book gets you set up quickly, so that you can start taking Git for a spin.
Chapter 3 is called "Git Branching", and the thirty pages explain all you ever wanted to know (as well as all you never wanted to know ) about branching. This part is hardcore, but Scott explains this with lots of diagrams, making it easier for us to follow.
One of the best chapters in the book, for me, is called "Git on the server". Scott explains the different methods of setting up Git so as to be able to collaborate.
If you use Git or intend to (and I'd certainly recommend you look at it), I very warmly recommend Scott Chacon's Pro Git: it's the best companion you'll have for Git.
This book provided the information I wanted, in a perfect rythm - Scott does not waste our time - he provides useful information on every page, and his explanations are extremely well written. Thanks a lot!
Also, the topics and their order are perfect. In chapter 1 and 2, only 45 pages, you learn to use Git, as you may already use Subversion. Chapter 3 is brilliant - it is where Scott explains Git branching - how it works and how you use it. It is also where the power of Git is revealed - and why you should change your version control system to it, if you can.
All the "mistery" terms around Git, like "origin", "master", "push", "pull", "remote", "rebase" are not misterious anymore. You are able to understand their meaning, and not only how to use the commands, but also why, and all the "logic" involved.
Git helps us to do complex things in simple ways - this complexity requires some learning. It is not like software that you can use reading "man" page or a simple tutorial. The "Pro Git" book is a very good resource to get up and running with Git, knowing and understanding very well what you are doing.
I thank the author and recommend this book.
I wish more technical books would be written like this.
You're probably asking yourself, "why is this guy writing a review on this book a year after he read it?". Well, I'm writing this review now because I still think about this book daily (and have a copy sitting on the front of my bookshelf). This is one of the best tech books (in general) that I've ever read.
When first reading this book, I had little to no experience with Git. I had heard about it numerous times from friends and colleagues, but never used it in a real sense. What originally motivated me to start learning about it was Github (probably the best website that was ever created for programmers).
After picking up a copy of Chacon's book, and transitioning myself from SVN -> Git, I found myself 'at home' with the Git ideals and methods used to handle version control. After a short period of time, using Git just became second nature, something that I had never experienced in my programming life.
As time has progressed and I've used Git more and more, I've become far more knowledgeable about version control in general, and actually have a far better understanding of source control and practices--something that I was never able to really have 'click' while using SVN or CVS.
Almost a year after my initial reading of 'Pro Git', I now write all software using Git, and couldn't live without it.
In short, buy this book and give Git a chance, you won't regret it. It is not only a life-changing version control system, but 'Pro Git' is an excellent resource to getting started simply, and helps you to really grasp what Git is all about, and why you need to start using it.
I was exposed Git through CIT conference 4 months ago and I want to learn Git.
At the first time, I choose Version Control with Git: Powerful Tools and Techniques for Collaborative Software Development and it is hard to understand the concept of Git and merging/branching of Git.
I thought " Should I read one more time the Version Control with Git or buy another book?".
I choose this book and I am satisfied with my choice.
I realized that how books can be written differently for the same content(git).
If you are new to Git, I strongly recommend this book.
Starting with basic use cases, logical steps are used to introduce advanced topics such as rebasing and submodules. The last chapter even dives into the contents of the .git directory and the formats of the files found there--including how to manipulate them using low-level commands. There are concise examples that show how use the git command line tool to accomplish each task, and illustrations help understand how each operation changes the state of the repository.
This book isn't the best introduction to version control in general, as the discussion of possible workflows is limited (doing all changes in feature-specific branches isn't the only approach), and it isn't made clear how Git distinguishes itself from other distributed version control systems such as Mercurial or Bazaar.
I've been an SVN believer for years (via TortoiseSVN), but have seen the light and plan to fully switch to Git after reading this book. Best yet, I was able to easily setup a Git server in a Linux VM by simply following Scott's detailed steps in chapter 4. I'm no longer intimidated by hosting and managing my own Git repo on my own server.
This is a must read for anybody that deals with Git on a day to day basis. I highly recommend it.
I just recently switched to Git after being a longtime user of other SCM tools. I had no previous knowledge of Git, and purchased this book as a reference to help me understand how Git is different from SVN/CVS/TFS and to help me decide if I was going to switch. I picked two books here on Git (the O'Reilly book being the other) and dove in headfirst.
All of the routine tasks, commands and options are well covered here. Covered topics include all of the required basics, using remote repositories, staging, branching strategies and so on.
I'm a really visual person and I really like diagrams. I was quickly able to understand the key strengths of Git by looking at the included diagrams in a way that just reading some text does not convey.
I've been using this book frequently.
This book would really be helped by a chapter or appendix that covers *all* of the git commands. I use 'git help' - that's information that should be in this book. I can't be a 'Pro' unless I know all of the commands.
Takes you just a couple days to read and in my case, I feel now very comfortable with Git thanks to it.
Highly recommended.
I'm a, uh, graybeard programmer. Chose git for a recent project, not knowing more than "git clone", and a howto on setting up a repository. Quickly found myself wondering where to turn.
I'm actually only about halfway through the book -- the good stuff is in the first couple of chapters.
I can summarize my experience like this:
1) Get Pro Git (from Amazon). You'll like having it around.
2) Read the first two chapters online while you wait. Experiment.
3) Read the first two chapters again in the hardcopy. They're short.
Thanks, Scott Chacon!
I think paper beats screen (to use a RPS sort of phrase), so I purchased a paper copy. I am glad I did. Within an hour, I had come to understand things about git that had escaped me, despite studying a great many websites and manpages. My copy is gradually accumulating marks in the margin, postit notes for important pages, and so forth. Thus, its value (to me, anyway) grows. As is always the case with book, the reader can *find* things in it, because the mind remembers things like "halfway down the left-hand page, five or seven or nine pages past the chapter start". Bookmarks in HTML or PDF are a laughable substitute for this.
I also bought the book to support the author, since he has been so kind as to put the material online for free, and I'd like to buy him a coffee, from the royalty from my purchase.
You'll notice that I've not yet *reviewed* this book. Is it any good? Does he know what he's talking about? Can he explain things? Does he cover the right material, in the right order? Yes, yes, yes, yes, and yes. The book is very nice, gem-like in spots. I'd recommend it to anyone. If git were simpler, or less powerful, or if there were a lot of good existing books, there would be no need for this book. Git is far up there on the importance-and-complexity axis, but down near the origin on the explanation-in-books axis. This book made a big change in the graph.
Click on "Documentation".
Go down to "Books - Pro Git".
Click on "Book".
You are now at [...]
I have been reading here while waiting for my hardcopy print
to become available and ship to me.
The online book is excellent, as is all the other documentation on
Git at the first link listed above.
This is an awesome book and love it. Your time spent will be well worth making your dev workflow. Due to the easiness of Git repo create/edit/branch/destroy, I usually end up using Git for client work and delivering my changes in bulk to whatever old school VCS system client uses.
Easy to read, good language and appropriate graphics and code samples at every turn. As far as technical reference books go this is an easy recommendation.
Unlike other version control systems, you cannot understand Git without understanding its internals. Once you understand how Git uses trees, commits and blobs you'll begin to understand how the system works. Git can be addictive. What was an arcane set of commands now makes perfect sense to me. A large credit for this understanding must go to Scot Chacon's Pro Git. The book is wonderfully written. It has superb diagrams and is well organized. I've gone through most of the book but keep coming back to it. The book can be read non-linearly or linearly.
My only complain with the kindle version are the code snippets being low resolution images.
I have no problem with the book no having a complete reference since git is still a changing program and I feel more comfortable using the included help commands when I need to be reminded of a particular option.
All in all a worthy book.
This book provides a detailed explanation of the concepts behind Git, using step by step diagrams to explain the workings of the tool. Understanding the internals of Git is very important to using it successfully. This book then extends those concepts and presents them as a series of use cases, making it easy for developers to do the right thing.
For many months I thought I could learn a few commands and pick up the understanding of what was happening in the background on the fly. This was NOT the case and quite a bit of confusion lingered until a couple days ago when I downloaded this to my iPad/Kindle app.
Wish'ed I'd picked this up months ago....but then again if you learn Git with this book for starters maybe it's too easy. I think one is supposed to suffer a bit learning Git ;)
I really liked the graphics and this book is really simple to understand and the examples are really good too.
A must have to learn GIT the right way.
I'm a professional developer that's used Perforce for going on ten years now. It's a pretty drastic change going to a distributed model. But this book does a very good job of explaining the practical ins and outs. And most of all does a super bang up job of explaining the branching model.
The main chapters on Git basics and branching are very easy to follow. The author explains all the major commands, showing the command line and the execution result. You can read the book without even trying anything (although I would recommend to download Git and try as much as possible). The chapter on distributed workflows is particularly interesting. It shows you how Git is used in a project, depending on the size (and other factors) of the project. Finally, the author presents the major Git tools, explains how to customize Git, how to use it with Subversion (would you do that?), and how Git works internally, which is very instructive.
The book is thin, and easy to read, so anybody can finish it in a short time. If you want to get started with Git, you can pick up this book without hesitation.
I have one minor complaint : the book size is a bit different from other Apress books I have (may depend on the print ?). It breaks the balance of my beloved book shelf :)
Git does have some philosophical differences with some systems like CVS and SVN and the book does a good job explaining why and the thinking behind the design principals.
I haven't gotten to the most advanced features/uses of git but as the book points out, most users don't need to do so. The project I am working on with over 400 files is up and running nicely.
The answer to that question most likely lies in Scott Chacon's book. He covers a lot of practical scenarios and clearly explains how to use git and how to integrate gitinto your environment in a number of ways. Chacon is often on the git mailing list and of course his [...] is hugely popular so he is as much an authority as anyone else.
This book is an indispensable guide to getting git running the way you want it to be in your production environment.
Pro Git was the book that helped improve my knowledge about git,since setting up our machines, to create the server environment, as well as the hooks necessaries to our organization.
Scott Chacon covers all the details about using git, since the day-to-day tasks, TO the management of your repository.
The chapter about branching is excellent, it shows all the power of the branching system and strategies to rebase or merge.
A great book.
I found that I was referring to it a lot, and so I decided to buy the print version.
I love that it's free online, but when I'm working on something, I just don't have the screen space to have an instance of this open all the time, and be able to see this, my command prompt, and my code at the same time.
Again, I encourage buying this, but take a look at the online version if you're curious what's in it.
All said, this book is preaching to the choir. The true believers who know that Git is forever superior to anything else ever will feel right at, but the rest of us weighing the pros and cons of multiple revision control systems might prefer something a little more technical, a little more objective, and a little less gushy.
Create your own review



