Videos tagged with Git
Summary Brion Vibber discusses the challenges of working with user communities, social bottlenecks, the Wikipedia article deletion process, scalability of software vs communities, new approaches to scaling communities, ongoing challenges with MediaWiki community, using git to scale the code commit process, automated Wikipedia edit filtering, flagged protection pages, and remaining challenges to...
ATLRUG - Jason Noble - Git
Jason Noble covering git at the November meeting. Created by tkadom
Cleaning up Git Directories & Files (Ignoring, Tracked, Untracked)
Learn how Git enables you to ignore files that you never want to track, purge files that are untracked while leaving your tracked files intact, and lastly, roll back all your changes to tracked files to the last-known-good state. Created by matthewmccullough
Distributed Version Control with Git
This is a screencast based off a talk I gave to the Des Moines Cocoaheads group. In this talk I tried to show why you should switch from Centralized Version Control, what is wrong with Subversion and what git does well. Check out Part II when I demonstrate Git and some apps available on Mac OS X to help you get the most out of git.
Github Gem Tutorial
How to use the Github Gem and the new networking commands Created by schacon
GitHub Fork Queue
Demonstration of the GitHub Fork Queue feature. This tool allows you to do a lot of repository collaboration maintenance entirely from the website. You can setup an integration branch that you ask everyone to make sure their commits apply cleanly to and pull them in one by one, entirely online. It also gives you great visibility to what is out there in your forked network and what you have or h...
RubyConf 2008: Two Turntables And A Git Repo
Over the last year, there has been a huge increase of interest in using Ruby to create and manipulate music. If you're interested but haven't been paying attention, or have just been sitting on the sidelines, we're here to show you how you too can be a computer DJ. First, we'll set the scene with some information about the technologies involved. We'll get you pushing notes with Ben's MIDIator l...
Insider Guide to GitHub Episode 2: Advanced Tasks
This episode takes you beyond the basics so you can take advantage of time-saving tools, advanced GitHub features, and pro tips. You’ll learn how to: save a ton of time by using the GitHub gem to create, clone, fork, and fetch changes use the GitHub API to query commits, run searches, and get user information configure a post-receive URL to notify an external service create a simple Rails...
Insider Guide to GitHub Episode 1: Getting Started
Git is a distributed version control system that makes collaborative software development possible. GitHub makes it easy to participate in that collaboration. You can host your public and private projects on GitHub, and contribute to other projects, too. Indeed, GitHub is where the action’s at. But to really get the most out of this great resource, you need an experienced guide to show yo...
Contributing with Git
Source code versioning is an invaluable tool for software development: users can easily track the newest versions, maintainers can easily track down which commit introduced a bug (often making it easier to come up with a fix), new developers get more documentation than just a big chunk of source code, etc In my talk I want to stress the importance of source code versioning in a related context:...