-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
92 lines (86 loc) · 3.01 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
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>RIT CS Git Tutorial | Overview</title>
<link rel="SHORTCUT ICON" href="Media/CSC_logo.ico">
<link rel="stylesheet" type="text/css" href="custom.css">
</head>
<body>
<!-- header -->
<div id="topbar">
<div class="barbutton">
<img height="40" src="Media/CSC_logo.PNG"/>
</div>
<div class="barbutton">
<a href="index.html">Home</a>
</div>
<div class="barbutton">
<a href="vocab.html">Vocab</a>
</div>
<div class="barbutton">
<a href="setup.html">Setup</a>
</div>
<div class="barbutton">
<a href="committing.html">Committing</a>
</div>
<div class="barbutton">
<a href="eclipse_setup.html">Eclipse and Git</a>
</div>
<div class="barbutton">
<a href="general.html">FAQ</a>
</div>
<div class="barbutton">
<img height="40" src="Media/git.png"/>
</div>
</div>
<!-- end header -->
<h1>Introduction to Git</h1>
<!-- ====================================================================== -->
<h2>General Notes</h2>
<div>
<p><i>This tutorial was written by RIT's Computer Science Community.</i></p>
<p>It is good practice to keep your files for each
lab/project/hw assignment in their own distinct subdirectory
of the appropriate course directory.
This is wise for both organizational and version control-related reasons,
as you will see.
</p>
<p>This tutorial makes use of the following topics,
understanding of which is recommended (not required):
<ul>
<li>
Navigation in the terminal
(ex: <code>cd</code>, <code>ls</code>, <code>pwd</code>)
<br/><i>To learn more: TODO:LINK</i>
</li>
<li>
I/O redirection
<br/><i>To learn more: TODO:LINK</i>
</li>
<li>
SSH and remote connections
(ex: TODO:EXAMPLES)
<br/><i>To learn more: TODO:LINK</i>
</li>
</ul>
</p>
</div>
<!-- ====================================================================== -->
<h2>Words of Warning!</h2>
<div>
<p>There are many online services that offer Git repository hosting,
the most popular being GitHub and BitBucket.
For the sake of simplicity,
the CS department recommends that you store your code on department systems.
If, however, you decide to use a third-party service,
carefully ensure that your hosted repositories are <i>private</i>!
If you publish course code to a public repository,
you can be penalized for cheating pursuant to
<a href="http://www.rit.edu/academicaffairs/policiesmanual/sectionD/D8.html" target="_blank">RIT's Academic Integrity Policy</a>
and the <a href="http://www.cs.rit.edu/usr/local/pub/doc/DCS.honesty.final.html" target="_blank">department Policy on Academic Honesty</a>.
</p>
</div>
<!-- ====================================================================== -->
</body>
</html>