Skip to content
This repository has been archived by the owner on Mar 14, 2022. It is now read-only.

Commit

Permalink
Merge pull request #44 from github/gitcasts-videos
Browse files Browse the repository at this point in the history
move gitcasts videos to be embedded at top of the screen
  • Loading branch information
Matthew McCullough committed May 7, 2013
2 parents 62f9e16 + bd50314 commit c95f5c0
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 1 deletion.
7 changes: 7 additions & 0 deletions css/style.css
Expand Up @@ -16,6 +16,13 @@ header {
padding: 15px;
}

embed[src*="youtube.com"]{
display: block;
margin: 0 auto 0 auto;
width: 100%;
max-width: 790px;
}

.logo {
float: left;
margin: 0;
Expand Down
2 changes: 2 additions & 0 deletions p/branching.md
Expand Up @@ -4,6 +4,8 @@ title: Branching and Merging
description: Create and work on topic and long running branches, merge between them and delete them.
---

<embed src="http://www.youtube.com/v/tl5IDfwdvxo" type="application/x-shockwave-flash" width="790" height="430" allowscriptaccess="always" allowfullscreen="true"></embed>

As we touched on in the first lesson, the way that Git handles branching and
merging is pretty unique. First of all, it's incredibly fast, both to create
new branches and to switch between them. Git has a single working directory
Expand Down
2 changes: 1 addition & 1 deletion p/index.md
Expand Up @@ -4,7 +4,7 @@ title: Introduction To Git
description: What Git is, why you would want to use it and where to get it and learn about it.
---

<center><embed src="http://www.youtube.com/v/hKfo0OXc1BI?hl=en_US&amp;version=3&amp;rel=0" type="application/x-shockwave-flash" width="790" height="430" allowscriptaccess="always" allowfullscreen="true"></embed></center>
<embed src="http://www.youtube.com/v/hKfo0OXc1BI?hl=en_US&amp;version=3&amp;rel=0" type="application/x-shockwave-flash" width="790" height="430" allowscriptaccess="always" allowfullscreen="true"></embed>

Welcome to the first lesson of the GitHub Learning course. This course
will lead you through a series of lessons that will demonstrate how to use
Expand Down
2 changes: 2 additions & 0 deletions p/log.md
Expand Up @@ -4,6 +4,8 @@ title: Git History
description: Browse your project history, find specific commits, and visualize the branching and merging actions.
---

<embed src="http://www.youtube.com/v/jnGbU-_m8oY" type="application/x-shockwave-flash" width="790" height="430" allowscriptaccess="always" allowfullscreen="true"></embed>

One of the most commonly used commands is the 'git log' command. This command
shows you the commit history of your project, so you can see what has happened
up to this point. With no options, it will start from the last commit on
Expand Down
2 changes: 2 additions & 0 deletions p/normal.md
Expand Up @@ -4,6 +4,8 @@ title: Normal Workflow
description: Make and view changes made, then stage and commit them.
---

<embed src="http://www.youtube.com/v/U1ayH6KLqxo" type="application/x-shockwave-flash" width="790" height="430" allowscriptaccess="always" allowfullscreen="true"></embed>

So you have a Git repository and everything is all setup. What now?

Generally, it is not going to be much different than working with any other
Expand Down
2 changes: 2 additions & 0 deletions p/rebasing.md
Expand Up @@ -4,6 +4,8 @@ title: Rebasing
description: Replay changes from one branch onto another branch to preserve a linear history.
---

<embed src="http://www.youtube.com/v/FyxiLdelSqc" type="application/x-shockwave-flash" width="790" height="430" allowscriptaccess="always" allowfullscreen="true"></embed>

In Git, there are two main ways to integrate changes from one branch into
another - the 'merge' and the 'rebase'. In this section we will learn what
'rebasing' is, how to do it and in what cases it may not be a good idea to.
Expand Down
3 changes: 3 additions & 0 deletions p/remotes.md
Expand Up @@ -3,6 +3,9 @@ layout: default
title: Distributed Git
description: Fetch, merge, pull, and push between multiple remote repositories.
---

<embed src="http://www.youtube.com/v/KWNIKb6sftw" type="application/x-shockwave-flash" width="790" height="430" allowscriptaccess="always" allowfullscreen="true"></embed>

So you've heard that Git is a **distributed** version control system. What
does that really mean and how do you take advantage of it?

Expand Down
2 changes: 2 additions & 0 deletions p/setup.md
Expand Up @@ -4,6 +4,8 @@ title: Setup and Initialization
description: Setup your Git environment, then create a new Git repository and clone an existing one.
---

<embed src="http://www.youtube.com/v/Esl439M154M" type="application/x-shockwave-flash" width="790" height="430" allowscriptaccess="always" allowfullscreen="true"></embed>

### setting up git

When you first start using Git, there are a few things you will likely want
Expand Down

0 comments on commit c95f5c0

Please sign in to comment.