forked from swcarpentry/git-novice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
motivation.html
58 lines (50 loc) · 1.71 KB
/
motivation.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=1024, user-scalable=no">
<title>Software Carpentry</title>
<!-- Required stylesheet -->
<script src="js/deckjs-custom.js"></script>
<script>includedeck(["css/slideshow.css"],{});</script>
<style>
.slide.title-slide h1 {padding-bottom: 0;} /* title is long... */
a {text-decoration: underline;} /* make links clearer */
pre {font-size: 75%;} /* make code blocks smaller */
</style>
<!-- Required Modernizr file -->
<script src="js/modernizr.custom.js"></script>
</head>
<body>
<div class="deck-container">
<!-- Begin slides. Just make elements with a class of slide. -->
<section class="slide">
<h2 id="why-use-version-control">Why Use Version Control?</h2>
Let some software handle the versions of your project let you focus on your project.
</section>
<section class="slide">
<h2 id="why-git">Why Git?</h2>
Because many people are using GitHub to collaborating.
</section>
<section class="slide">
<h2 id="next-steps">Next Steps</h2>
<a href="01-backup.html">Here we go!</a>
</section>
<!-- End slides. -->
<!-- Begin extension snippets. Add or remove as needed. -->
<!-- deck.navigation snippet -->
<div aria-role="navigation">
<a href="#" class="deck-prev-link" title="Previous">←</a>
<a href="#" class="deck-next-link" title="Next">→</a>
</div>
<!-- deck.status snippet -->
<p class="deck-status" aria-role="status">
<span class="deck-status-current"></span>
/
<span class="deck-status-total"></span>
</p>
<!-- End extension snippets. -->
</div>
</body>
</html>