Skip to content

Instantly share code, notes, and snippets.

@qualityjacks
Forked from jaseemabid/git tutorials.md
Last active February 20, 2018 17:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save qualityjacks/dfe391744dd3527fd9d4ca87f8acc35c to your computer and use it in GitHub Desktop.
Save qualityjacks/dfe391744dd3527fd9d4ca87f8acc35c to your computer and use it in GitHub Desktop.
Awesome git tutorials I am finding here and there

A bunch of good git tutorials

Intro to git

Git deep dive

  • The man pages. Its the definitive guide to learn the internals. Its available in the console as $ man git or $ git --help. Detailed information about a particular command can be accessed with $ git commit --help.

  • A very decent book on git. Spend some time and read it cover to cover. Pro Git book

  • Git from bottom up is another good book

  • Git Ready A collection of blogs, each concentrating on one git command at a time. Difficulty level varies from very beginner to advanced.

  • Git magic is an online book on Git well written with wonderful analogies to help beginners understand the concepts behind Git

Pragmatic Git

  • A Note About Git Commit Messages A must read on writing good commit messages and the style.

  • Seth Robertson's blog gives some real insight into git internals and good practices

  • Git Immersion walks you through Git basics using a step-by-step, hands-on approach. It’s a great tutorial for those who prefer to get into Git right away.

Talks

  • Introduction to Git with Scott Chacon of GitHub This talk introduces Git, compares it with Subversion, dig into staging and committing, how it stores it's data, how it branches and merges so nicely and how it talks to a server when pushing and fetching. The talk looks at how to analyze history with log in interesting ways and should help Git newbies get acquainted with the popular VCS and other Git users get a glimpse of what's happening under the hood.

  • Tech Talk: Linus Torvalds on git Linus Torvalds visits Google to share his thoughts on git, the source control management system he created to manage the kernel source. More philosophy than tech, this talk covers the history and design principles of Git.

Unsorted

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment