|
|||||||||||||||||||||||||||||||||||
|
19 Reviews
|
Average Customer Review
Share your thoughts with other customers
Create your own review
|
|
Most Helpful First | Newest First
|
|
63 of 69 people found the following review helpful:
3.0 out of 5 stars
Dives into the weeds and never manages to rise again,
By Shazam's Pimped RV (San Diego CA) - See all my reviews
This review is from: Version Control with Git: Powerful Tools and Techniques for Collaborative Software Development (Paperback)
This book jumped into the weeds way too fast. Which is good and bad. The label "power user" is appealing and I see the merit in knowing internals. But not with source control. It's a tool. I want to be able to use it productively and quickly and not have to remember MORE THAN two dozen commands. I'm not afraid of branching or merging, but then again, I don't care how these branches and merges are represented as objects on the filesystem.
And that's the problem. This book starts with the assumption that you're interested in the details and will cherish an under-the-hood look. Actually, for me, I really don't care. The details are certain to change. I'm convinced I'll be throwing this book out in a few years because it's outdated. I wouldn't be surprised if Git's hyphenated low level command structure disappears in a few years making this book nearly unusable - these commands are more developer tools than user tools. With all the negative stuff out of the way, the book does contain a lot of good information. It's easy to read. It hits on a few interesting ideas on managing git. I found no issue following along with the examples - all of them worked fine for me.
30 of 31 people found the following review helpful:
3.0 out of 5 stars
I just want to get work done...,
Amazon Verified Purchase(What's this?)
This review is from: Version Control with Git: Powerful Tools and Techniques for Collaborative Software Development (Paperback)
The author really knows his stuff. There's a lot of information on how git works. My problem is that I need to get work done. The book tells you how to create a git repository and add files to it. It doesn't do a good job explaining how to put a file back. That's the information I need.
I wish books like this would give you the basics first. Here's how you create a repository. Here's how you add files. Here's how you put a file back if you change or delete it. That's my two cents.
30 of 33 people found the following review helpful:
5.0 out of 5 stars
Excellent for all experience levels,
By
Amazon Verified Purchase(What's this?)
This review is from: Version Control with Git: Powerful Tools and Techniques for Collaborative Software Development (Paperback)
Out of the current crop of distributed version control systems, Git is by far my least favorite. Unfortunately for me, out of the current crop of distributed version control systems, Git is the only one that I don't have to spend an hour chasing bizarre, nonsensical uncaught Python exceptions every time I upgrade, so it's the one I've been stuck gravitating toward.
Luckily, just about anything I don't like about Git can be customized out of existence, but up until now, figuring out how to go about doing this the right way has always been something of a guessing game. This book starts you off on the right foot and gives you the best practices you'll need to adopt in order to not make a fool of yourself, which is really all you can ever hope for. Highly recommended to anyone who needs or wants to work with Git, even if you already know what you're doing.
11 of 11 people found the following review helpful:
5.0 out of 5 stars
Great coverage of Git,
By
Amazon Verified Purchase(What's this?)
This review is from: Version Control with Git: Powerful Tools and Techniques for Collaborative Software Development (Paperback)
I've been using Git for my side projects for nearly a year now, based primarily on knowledge I scraped together through conference sessions, screen-casts and cheat sheets. This is how a lot of people seem to get started with Git, but at some point it becomes necessary to really understand how it's working and what some of the more advanced commands are for.
This book was exactly the right next step for me, moving me from stumbling around in Git to really understanding it. The author accomplishes this by taking the time to cover Git internals and to build on your knowledge as the book progresses. At first, I resisted all the plumbing explanations, since I doubt I'll be contributing to Git itself, but after a chapter or two it becomes obvious that understanding what Git is doing internally is pretty important to understanding how to interact with it. Additionally, the internals are always explained from a layman's perspective and never get so nuanced that they distract from the topic area being covered. The book is organized so that you slowly build up knowledge of how Git works, with many topic areas sort of split into a basic and advanced chapter. This was a bit annoying at first, but since the more advanced topics require you to understand other aspects of the tool first, it's necessary. As an example, you need to understand diffs, branching and merges before you can worry about patches, and you need to understand branching and merging before you can worry about remotes. The book also ends with a decent overview of how to use Git with SVN, which is still pretty important given that a lot of organizations will be relying on SVN for quite some time. Unfortunately, this is one of the few areas that could have used a bit more coverage and seemed to lack the basic and advanced topic setup that worked so well for the rest of the book. It also doesn't provide much in the way of best practices for employing Git, although I don't see this as a weakness. The closest it comes to recommending a strategy to use it with your team is to kind of sketch out how some very high-profile open source projects work with the tool, which is unlikely to directly apply. Fortunately, there's a lot of content on the Web that covers use cases, branching strategies and best practices, so you won't have trouble finding this information elsewhere. The author doesn't take an opinion on such topics, instead focusing on how to make Git do what you want once you've decided on how you want to use it. In the end, I recommend this book to anybody who has decided that Git is going to be their DVCS and intends to read the book sequentially, cover to cover. If you're still trying to decide between Mercurial, Bazaar and Git, this is probably a lot more information than you want or require. If you're looking for a quick reference, then the progressive structure may leave you scratching your head when jumping around topic areas. Once you settle on Git, and want to invest the time to build up the conceptual framework you'll need to succeed with it, this book won't disappoint.
22 of 26 people found the following review helpful:
5.0 out of 5 stars
well written; easy to understand,
By
This review is from: Version Control with Git: Powerful Tools and Techniques for Collaborative Software Development (Paperback)
I found this book to be very well and carefully written. As a technical writer and editor, I'm extremely picky about copy errors, language usage, etc. I was pleasantly surprised to find almost no problems of this sort.
I also found the book remarkably easy to understand. Given the complex and esoteric nature of the topic matter, this is quite an accomplishment! In summary, I would recommend this book highly as an introduction and reference to Git.
12 of 13 people found the following review helpful:
5.0 out of 5 stars
GIT ME!!!,
By
This review is from: Version Control with Git: Powerful Tools and Techniques for Collaborative Software Development (Paperback)
Do you want to gain insight into some of Git's internal design and be able to master some of its more powerful techniques? If you do, then this book is for you! Author Jon Loeliger, has done an outstanding job of writing a book that shows you how you can learn enough about basic Git operations to be productive in a short while.
Loeliger, begins by showing you how to install Git on Linux and Microsoft Windows and within Cygwin. Next, the author explores why and where Git differs by examining the key components of its architecture and some important concepts. Then, he explains how to manage the index and your corpus of files. The author continues by showing you how to select, create, view, and remove branches. Next, he covers some of the basics of git diff and some of its special capabilities. Then, he shows you how to combine two or more different lines of development. The author continues by showing you examples and techniques to share, track, and obtain data across multiple repositories. Next, he presents two approaches to managing and publishing repositories for cooperative development. Then, the author explains when you might want to use patches and shows you how to generate, send, and apply a patch. He continues by discussing why developers create submodules and how Git attempts to deal with them. Finally, the author shows you how to use Git when the rest of your team employs a Subversion. This most excellent book shows you why Git is a powerful, flexible, and low-overhead version control tool that makes collaborative development a pleasure. More importantly, if you read this book cover to cover, you'll discover why Git has proven valuable to a wide range of projects.
7 of 7 people found the following review helpful:
5.0 out of 5 stars
Best book available on git, almost perfect,
By
This review is from: Version Control with Git: Powerful Tools and Techniques for Collaborative Software Development (Paperback)
This is absolutely the best book on git available, and even if you've used git before you'll learn something from it.
The first five chapters are perfect, and do an amazing job of explaining what the heck git is doing. If there's anything wrong with the book, it starts to show up in chapter 6, which is where new concepts are referenced many chapters before they're explained (for example, all the sudden remote tracking branches show up 5 chapters before they're actually explained). Sometime's there's just no way around this - it's tough to untie all of the knots of git. Expect to read chapters 6 (commits) and chapter 9 (merges) twice - ideally after you've read the whole book and have actually used git to manage a project with branches. There's plenty to tighten up for a second edition, but it still gets five stars.
4 of 4 people found the following review helpful:
5.0 out of 5 stars
Great for git users,
By
This review is from: Version Control with Git: Powerful Tools and Techniques for Collaborative Software Development (Paperback)
I have used git for quite a while and think it's a great tool that can do a lot for you. I frequently found myself wanting to do more complicated things than I new how to do, like write simple hooks and use branches effectively. This book is great for a user who is already somewhat familiar with git and wants to understand it better and take more advantage of the advanced capabilities that git offers. I found the description of the underlying object model really helpful in understanding what is going on when I run various commands. Knowing what your tool is doing and how it works helps you to use it more effectively, and this is a great book in that regard.
As other reviewers have mentioned, if you are brand new to git and just want to be able to run things, this may not be the book for you--a book like "Pragmatic Guide to Git" is probably better suited to your needs. This book, while giving examples like the simpler books, goes into more detail about the inner workings of git that you may not be interested in or may be over your head. I also use this book as a reference when I forget how to use some of git's complicated functionality. It's certainly not a complete reference, but it's the closest I've seen outside of the man pages. The one complaint I had about this book was that a significant percentage of the figures in the book were wrong. Some were obviously wrong to anyone reading the book, but others were more subtly wrong and could be confusing to one who doesn't realize that the figure is out of sync with the text. I would say that at least 20% and maybe as many as 40% of the figures have something wrong with them, at least in the printing that I have. But I still liked the book enough to give it 5 stars even with the problems with the figures (I probably would do 4.5 if I could).
4 of 4 people found the following review helpful:
5.0 out of 5 stars
Good read and overview of Git,
Amazon Verified Purchase(What's this?)
This review is from: Version Control with Git: Powerful Tools and Techniques for Collaborative Software Development (Paperback)
I found the book easy to follow and feel that it gave me a complete view of the inner workings of Git. The graphs used throughout the book were also helpful in demonstrating Git concepts and behavior. After reading this book, I know enough to not only do some real damage, but perhaps repair a good portion as well.
3 of 3 people found the following review helpful:
4.0 out of 5 stars
Git Made Easy,
This review is from: Version Control with Git: Powerful Tools and Techniques for Collaborative Software Development (Paperback)
I've used many version control systems including SCCS, PVCS, CVS, SourceSafe and Subversion. A few years ago, I started using distributed version control, first with darcs, then Bazaar. I was never completely comfortable with either of them. Mercurial and Git on the other hand, just felt so much better, and after quite some time using both, I moved into the Git camp.
'Version Control with Git' takes you step by step through the basics of what Git is, how to install it, day-to-day use and on into more more complex topics. To me, one of Git's strong points is branching and merging. Detailed chapters on this subject help illuminate the process and make it as easy as possible. Another great feature of Git is its ability to handle different types of workflow, including various approaches to repository management. Whether you choose to set up a centralized or distributed repository environment, or use multiple repositories, you'll find the how-to here. For those still living with Subversion, a chapter describes how to set up Git to work with Subversion. This setup has come in handy for me as we use Subversion at the office and I can easily pull a git repository for work offsite. I can do whatever I want in the code and push my git repository changes back to the office without touching the centralized Subversion repository. This is extremely useful when the current state of my project would break the build upon Subversion checkin. Whether you are just starting out with Git and would like lots of hands-on examples or you are already comfortable with Git and are looking for an excellent reference, get this Git book. |
|
Most Helpful First | Newest First
|
|
Version Control with Git: Powerful Tools and Techniques for Collaborative Software Development by Jon Loeliger (Paperback - June 11, 2009)
$34.99 $21.29
In Stock | ||