-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitlet.html
More file actions
85 lines (85 loc) · 4.11 KB
/
gitlet.html
File metadata and controls
85 lines (85 loc) · 4.11 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
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="fullPage.js/fullPage.js-master/jquery.fullPage.css" />
<script src="http://cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.2/modernizr.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,600,800' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css">
<link type="text/css" rel="stylesheet" href="stylesheet.css" />
<script type='text/javascript' src='loadImg.js'></script>
<link rel="stylesheet" type="text/css" href="fullPage.js/fullPage.js-master/jquery.fullPage.css" />
<script type="text/javascript" src="fullPage.js/fullPage.js-master/jquery.fullPage.js"></script>
<script type="text/javascript" src="script.js"></script>
<link type="text/css" rel="stylesheet" href="stylesheet.css" />
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<title>Cindy Liu</title>
</head>
<body>
<div class="buttons">
<div class="nav">
<ul>
<li><a href="index.html#envelope">Contact</a></li>
<li><a href="index.html#folder">Projects</a></li>
<li><a href="index.html#info">About<a></li>
<li><a href="index.html#home">Home</a></li>
</ul>
</div>
</div>
<div id="fullpage">
<div class="section">
<div class="slide slide-gitlet">
<div class="checkers-title">
<i class="fa fa-github-alt fa-2x"></i>
<h1>Gitlet</h1>
<p class="project-blurb">A version control system incorporating core features of git and more </p>
<a href="index.html#folder"><button type="button" class="btn btn-primary learn-more-btn view-more-btn">View More Projects</button></a>
</div>
</div>
<div class="slide slide-gitlet">
<div class="col-lg-7 col-md-7 col-sm-12 col-xs-12">
<img class="gitlet-img" src="gitlet_cover.jpg">
</div>
<div class="col-lg-5 col-md-5 col-sm-12 col-xs-12">
<div class="git-ngord-description">
<p>The largest Java program I have written at over 1000 lines of code, this was alse the most challenging, and the most fun project I completed in my Data Structures class. Using the java.io.File class and java.io and java.nio packages, I created a version control system inspired by git. Begin by initializing Gitlet. Then add files and view the current status as you wish.</p>
</div>
</div>
</div>
<div class="slide slide-gitlet">
<div class="col-lg-7 col-md-7 col-sm-12 col-xs-12">
<img class="gitlet-img" src="gitlet2.jpg">
</div>
<div class="col-lg-5 col-md-5 col-sm-12 col-xs-12">
<div class="git-ngord-description">
<p>The log and global-log features allow user to view the history of commits.</p>
</div>
</div>
</div>
<div class="slide slide-gitlet">
<div class="col-lg-7 col-md-7 col-sm-12 col-xs-12">
<img class="gitlet-img" src="gitlet3.jpg">
</div>
<div class="col-lg-5 col-md-5 col-sm-12 col-xs-12">
<div class="git-ngord-description">
<p>Gitlet rm allows you to remove files so they do not show up in future commit.</p>
</div>
</div>
</div>
<div class="slide slide-gitlet">
<div class="col-lg-7 col-md-7 col-sm-12 col-xs-12">
<img class="gitlet-img" src="gitlet4.jpg">
</div>
<div class="col-lg-5 col-md-5 col-sm-12 col-xs-12">
<div class="git-ngord-description">
<p>You can also create new branches and checkout to those branches. Other features of Gitlet include find, remove branch, reset, merge, rebase, and interactive rebase. You can find the detailed spec here: <a href="http://berkeley-cs61b.github.io/public_html/materials/proj/proj2/proj2.html">Gitlet Spec</a></p>
</div>
</div>
</div>
</div>
</div>
</body>
</html>