-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (50 loc) · 2.29 KB
/
index.html
File metadata and controls
50 lines (50 loc) · 2.29 KB
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
<!DOCTYPE html>
<html>
<head>
<title>NC A&T State University Computer Science GitHub Page</title>
<link rel="stylesheet" href="style.css" type="text/css"/>
</head>
<body>
<div class="wrapper">
<div class="heading">
<h1>Computer Program Design Resources</h1>
<h2>North Carolina A&T State University</h2>
<h2>Department of Computer Science</h2>
</div>
<div class="sidebar">
<a href="instructorResources.html">Resources for TA's</a>
<br><br>
<a href="studentResources.html">Additional Resources for Students</a>
</div>
<div class="content">
<h2>GitHub Organization</h2>
<p>If you cannot find your GitHub repositories, they are all located within our class's GitHub organization <a href="https://github.com/NCAT-COMP167-Fall2017">here</a></p>
<br>
<h2>Git Introduction Presentation</h2>
<a href="https://github.com/NCAndTCS/COMP167-Class-Resources/blob/master/COMP167GitIntro.pdf">An Introduction to Git and GitHub: Source Control for COMP 167</a>
<br>
<h2>Using Git from Command Line</h2>
<a href="https://gist.github.com/ccannon94/982d69b23659d66c0ca6fb1384f94c97">Command Line Git Gist</a>
<br>
<h2>Git for Major Programming Assignments</h2>
<a href="https://www.youtube.com/watch?v=l2bP9JKQkdA">Major Programs GitHub YouTube Video</a>
<br>
<a href="https://gist.github.com/ccannon94/511115be821a873ae9ec5f4db9cfdda0">Major Programs Gist</a>
<!--TODO: Fix Merge Conflict Gist to use command line instead of desktop-->
<br>
<h2>Resolving Merge Conflicts</h2>
<a href="https://gist.github.com/ccannon94/a75f1f725d33a1834dd7f5feebbc7d4b">MergeConflict Gist</a>
<br>
<h2>Forking Repositories</h2>
<a href="https://gist.github.com/ccannon94/2d69b4c988f1298ebeb1a0873c7685f9">Forking Gist</a>
<br>
<h2>Requesting Help from a TA</h2>
<a href="https://gist.github.com/ccannon94/4980dc78456cb7a7ab38028e933cb01e">Issues Gist</a>
</div>
<div class="footer">
Students, you can view the source code for this website on our <a href="https://github.com/NCAndTCS/NCAndTCS.github.io">GitHub Repository</a>
Site developed by <a href="https://github.com/CCannon94">@CCannon94</a>
</div>
</div>
</body>
</html>