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

Commit

Permalink
Remove deprecated <center> from video embeds
Browse files Browse the repository at this point in the history
  • Loading branch information
githubteacher committed May 7, 2013
1 parent 89b1adf commit 6ede250
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion p/branching.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ title: Branching and Merging
description: Create and work on topic and long running branches, merge between them and delete them.
---

<center><embed src="http://www.youtube.com/v/tl5IDfwdvxo" type="application/x-shockwave-flash" width="790" height="430" allowscriptaccess="always" allowfullscreen="true"></embed></center>
<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
Expand Down
2 changes: 1 addition & 1 deletion p/index.md
Original file line number Diff line number Diff line change
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: 1 addition & 1 deletion p/log.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ title: Git History
description: Browse your project history, find specific commits, and visualize the branching and merging actions.
---

<center><embed src="http://www.youtube.com/v/jnGbU-_m8oY" type="application/x-shockwave-flash" width="790" height="430" allowscriptaccess="always" allowfullscreen="true"></embed></center>
<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
Expand Down
2 changes: 1 addition & 1 deletion p/normal.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ title: Normal Workflow
description: Make and view changes made, then stage and commit them.
---

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

Expand Down
2 changes: 1 addition & 1 deletion p/rebasing.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ title: Rebasing
description: Replay changes from one branch onto another branch to preserve a linear history.
---

<center><embed src="http://www.youtube.com/v/FyxiLdelSqc" type="application/x-shockwave-flash" width="790" height="430" allowscriptaccess="always" allowfullscreen="true"></embed></center>
<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
Expand Down
2 changes: 1 addition & 1 deletion p/remotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ title: Distributed Git
description: Fetch, merge, pull, and push between multiple remote repositories.
---

<center><embed src="http://www.youtube.com/v/KWNIKb6sftw" type="application/x-shockwave-flash" width="790" height="430" allowscriptaccess="always" allowfullscreen="true"></embed></center>
<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: 1 addition & 1 deletion p/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ title: Setup and Initialization
description: Setup your Git environment, then create a new Git repository and clone an existing one.
---

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

Expand Down

0 comments on commit 6ede250

Please sign in to comment.