Starter guide for git/github?

1

I'm a novice when it comes to version control. Git looks pretty neat, and I've seen some interesting projects on github (Homebrew in particular). I've set up git and github, and I've looked up a tutorial or two, but I can't quite get my head around the whole workflow I should be building around using git.

What's the best way to get started with git/github?

Tim

Posted 2010-12-01T22:40:00.193

Reputation: 403

Question was closed 2016-11-24T14:10:09.410

Answers

1

Learn to use git first and foremost. If you don't understand Git, GitHub won't do much of anything for you in terms of actually doing development or working with other developers.

Despite the name, I've actually found Pro Git to be a great book to read through. Doesn't hurt that it's completely free to read, and you can buy the paperback if you'd like a tangible copy or want to show your support.

AFTER you understand Git, GitHub Help is a great launching point to glue together Git use and GitHub storage/everyday use.

VxJasonxV

Posted 2010-12-01T22:40:00.193

Reputation: 2 166

2

I found Everyday GIT With 20 Commands Or So to be a good start, for github work see the two Individual Developer sections. Just git clone the github path for the project

user151019

Posted 2010-12-01T22:40:00.193

Reputation: 5 312

1

I started with GitMagic from git://github.com/blynn/gitmagic.git. (Actually, I used the Ubuntu packaged version.

BillThor

Posted 2010-12-01T22:40:00.193

Reputation: 9 384

I'm having trouble compiling that, maybe I'll just try reading the online version. – Tim – 2010-12-02T03:23:26.967

0

A simple tutorial is integrated in git: man gitutorial and man gittutorial-2 will give you something to start with.

user54114

Posted 2010-12-01T22:40:00.193

Reputation: 457