Skip to content

Commit 2aadcc4

Browse files
committed
Motivation slides
1 parent b9218af commit 2aadcc4

File tree

2 files changed

+37
-17
lines changed

2 files changed

+37
-17
lines changed

motivation.html

+26-7
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,36 @@ <h1 class="var-title"></h1>
2727
</div>
2828

2929
<!-- Begin slides. Just make elements with a class of slide. -->
30-
<section id="why-use-version-control" class="slide level2">
31-
<h1>Why Use Version Control?</h1>
32-
<p>Let some software handle the versions of your project let you focus on your project.</p>
30+
<section id="why-version-control" class="slide level2">
31+
<h1>Why Version Control?</h1>
32+
<p>Using a software tool to handle the versions of your project files lets you focus on the more interesting/innovative aspects of your project</p>
3333
</section>
34-
<section id="why-git" class="slide level2">
35-
<h1>Why Git?</h1>
36-
<p>Because many people are using GitHub to collaborating.</p>
34+
<section id="version-control-features" class="slide level2">
35+
<h1>Version Control Features</h1>
36+
<ul>
37+
<li>It’s easy to set up</li>
38+
<li>Every copy of a Git repository is a full backup of a project and its history</li>
39+
<li>A few easy-to-remember commands are all you need for most day-to-day version control tasks</li>
40+
<li>The <a href="https://github.com/">GitHub</a> hosting service provides a web-based collaboration service</li>
41+
</ul>
42+
</section>
43+
<section id="two-main-concepts" class="slide level2">
44+
<h1>Two main concepts</h1>
45+
<ul>
46+
<li><em>commit</em>: a recorded set of changes in your project’s file</li>
47+
<li><em>repository</em>: the history of all your project’s commits</li>
48+
</ul>
49+
</section>
50+
<section id="why-use-github" class="slide level2">
51+
<h1>Why Use Github?</h1>
52+
<ul>
53+
<li>No need for a server: easy to set up</li>
54+
<li>GitHub’s strong community: your colleagues are probably already there</li>
55+
</ul>
3756
</section>
3857
<section id="next-steps" class="slide level2">
3958
<h1>Next Steps</h1>
40-
<p><a href="01-basics.html">Here we go!</a></p>
59+
<p><a href="index.html">Let’s start our lesson</a></p>
4160
</section>
4261
<!-- End slides. -->
4362

motivation.md

+11-10
Original file line numberDiff line numberDiff line change
@@ -6,24 +6,25 @@ subtitle: Motivation
66

77
## Why Version Control?
88

9-
Let some software handle the versions of your project let you focus on your
10-
project
9+
Using a software tool to handle the versions of your project files
10+
lets you focus on the more interesting/innovative aspects of your project
1111

1212
## Version Control Features
1313

14-
- history of all changes: what, when, and by whom was changed
15-
- revert to any previous version
16-
- collaborate in the same files without fearing conflicts
14+
* It's easy to set up
15+
* Every copy of a Git repository is a full backup of a project and its history
16+
* A few easy-to-remember commands are all you need for most day-to-day version control tasks
17+
* The [GitHub](https://github.com/) hosting service provides a web-based collaboration service
1718

1819
## Two main concepts
1920

20-
- *commit*: a recorded set of changes in your project's file
21-
- *repository*: the history of all your project's commits
21+
* *commit*: a recorded set of changes in your project's file
22+
* *repository*: the history of all your project's commits
2223

23-
## Why Git & Github?
24+
## Why Use Github?
2425

25-
- no need for a server: easy to set up
26-
- GitHub's strong community: easy to ask for help
26+
* No need for a server: easy to set up
27+
* GitHub's strong community: your colleagues are probably already there
2728

2829
## Next Steps
2930

0 commit comments

Comments
 (0)