forked from emmet0r/git-playground-2023
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (61 loc) · 3.17 KB
/
index.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
81
<!DOCTYPE html>
<html>
<head>
<title>Practicing Git at UC Santa Cruz</title>
<link rel="stylesheet" type="text/css" href="style.css" media="screen" />
<script src="poem.js"></script>
</head>
<body>
<div class="section" id="plan">
<h1>Practicing Git at UC Santa Cruz</h1>
<div class="minileft">
<div><img src="trees.jpg" /></div>
</div>
<p>Ready to learn about version control through git? </p>
<h2>Version control is...</h2>
<p>... a system that tracks changes/edits while working with a set of documents, code, or projects; usually utilized
for team collaboration.</p>
<h2>Cloning a repository...</h2>
<p>... is leading us into war. <a href="http://en.wikipedia.org/wiki/Clone_Wars_(Star_Wars)">The Clone Wars</a>, that is.</p>
<h2>"Adding", "committing" and "pushing" changes...</h2>
<p>... you just said three things that all mean the same thing.</p>
<h2>You need to fork when...</h2>
<p>... you're out of spoons.</p>
</div>
<div class="section" id="poem">
<p>An interactive poem about version control:</p>
<div id="line">
<p onClick=nextLine(0)>(Click to advance.)</p>
</div>
</div>
<div class="section" id="more">
<h2>More about open source</h2>
<p>Free, open source software is software that is
shared freely and available to build upon. It is a
hands-on way to apply your skills to real world projects
and social causes. You can participate by writing or
reviewing code, answering users' questions,
translating the interface to another system, making
video tutorials to help new users, and myriad other
ways. Open source software is often produced by lots
of developers collaborating across states and countries, and
this event specially welcomes newcomers to that style
of work.</p>
<p>Open source participation is one way to gain
programming skills and make connections that will last
you through your career. Volunteer staff will include
professionals and academics who use open source
daily.</p>
</div>
<div class="section" id="whoweare">
<h2>Who we are</h2>
<p>This activity was put together by Shauna Gordon-McKeon and
<a href="http://openhatch.org/people/paulproteus/">Asheesh Laroia</a> of
<a href="http://openhatch.org/">OpenHatch</a>. It was updated for <a href="https://www.ucsc.edu/">UC Santa Cruz</a> and <a href="https://ospo.ucsc.edu/"> UCSC Open Source Program</a> by <a href="https://users.soe.ucsc.edu/~emme/">Emily Lovell</a>.</p>
<h2>Further resources</h2>
<ul><li><a href="http://try.github.io/">Try Git</a><br /></li>
<li><a href="http://git-scm.com/book/en/Getting-Started">The Official Git book</a><br /></li>
<li><a href="http://gitimmersion.com/">Git Immersion</a></li></ul>
</div>
</body>
</html>