-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (56 loc) · 2.67 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link href="http://netdna.bootstrapcdn.com/bootstrap/3.0.2/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<nav class="navbar">
<div class="navbar-header">
<a class="navbar-brand" href="#">IISlabPIO</a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="#section1">Revision control systems</a></li>
<li><a href="#section2">Distributed revision control system</a></li>
</ul>
</div>
</nav>
<section id="section1" class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Revision control systems</h3>
</div>
<div class="panel-body">
Revision control system – a software for tracing changes mainly in a source code and to facilitate programmers with combining changes introduced in files by many persons at different time.
</div>
<footer class="panel-footer">
<a href="http://en.wikipedia.org/wiki/Revision_control">Wikipedia</a>
</footer>
</section>
<section id="section2" class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Distributed revision control system.</h3>
</div>
<div class="panel-body">
In distributed revision control systems (such as Git, Mercurial, Bazaar lub Darcs) clients do not get access only to the news version of files but they copy the whole repository. When one of the servers used by these systems to inter-cooperate fails, the repository of any client can simply be copied to the server in order to restore it to work.
</div>
<footer class="panel-footer">
<a href="http://git-scm.com/book/en/Getting-Started-About-Version-Control#Distributed-Version-Control-Systems">Git - manual</a>
</footer>
</section>
<section id="section3" class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Centralized revision control system.</h3>
</div>
<div class="panel-body">
In centralized revision control systems, there is one central repository, storing all units subjected to version control, and many clients who are connecting to it via the service access the various versions of the documents.
</div>
<footer class="panel-footer">
<a href="http://git-scm.com/book/en/Getting-Started-About-Version-Control#Centralized-Version-Control-Systems">Git - manual</a>
</footer>
</section>
<footer class="navbar">
Developed in the class 'GIT system - fundamentals' during Software Engineering laboratory in <a href="http://www.iis.p.lodz.pl/">Institute of Applied Computer Science PŁ</a>
</footer>
</body>
</html>