-
Notifications
You must be signed in to change notification settings - Fork 0
/
motivation.html
80 lines (70 loc) · 2.98 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<title>Version Control with Git</title>
<script src="js/deckjs-custom.js"></script>
<script>
// TODO: finer filter on what is needed (vs profile-5)
includedeck("css/swc-slides.css", {
BEFOREINIT: function() {
$(".slide.auto li:not(li li):not(.notslide)").addClass("slide");
}
});
</script>
</head>
<body>
<div class="deck-container">
<div class="slide title-slide" data-container-class="no-status">
<h1 class="var-title"></h1>
<img class="logo" src="img/software-carpentry-banner.png" alt="Software Carpentry"/>
</div>
<!-- Begin slides. Just make elements with a class of slide. -->
<section id="why-version-control" class="slide level2">
<h1>Why Version Control?</h1>
<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>
</section>
<section id="version-control-features" class="slide level2">
<h1>Version Control Features</h1>
<ul>
<li>It’s easy to set up</li>
<li>Every copy of a Git repository is a full backup of a project and its history</li>
<li>A few easy-to-remember commands are all you need for most day-to-day version control tasks</li>
<li>The <a href="https://github.com/">GitHub</a> hosting service provides a web-based collaboration service</li>
</ul>
</section>
<section id="two-main-concepts" class="slide level2">
<h1>Two main concepts</h1>
<ul>
<li><em>commit</em>: a recorded set of changes in your project’s file</li>
<li><em>repository</em>: the history of all your project’s commits</li>
</ul>
</section>
<section id="why-use-github" class="slide level2">
<h1>Why Use Github?</h1>
<ul>
<li>No need for a server: easy to set up</li>
<li>GitHub’s strong community: your colleagues are probably already there</li>
</ul>
</section>
<section id="next-steps" class="slide level2">
<h1>Next Steps</h1>
<p><a href="index.html">Let’s start our lesson</a></p>
</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>
<!-- footer -->
<p class="deck-status deck-progress-10"> <span class="deck-status-current"></span> / <span class="deck-status-total"></span> − <span class="var-title">will be replaced by the title</span></p>
<!-- progress bar -->
<div class="progress-bar" data-progress-size=":spe.bottom(0, 1) ; left: slide.left+'px' ; height: designRatio+'px'" data-progress="width: detail.p * slide.width" style="position: absolute;"> </div>
<!-- End extension snippets. -->
</div>
</body>
</html>