forked from esparta/gitimmersion-spanish
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
90 lines (81 loc) · 4.57 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
<!DOCTYPE html>
<html>
<head>
<title>Git Immersion Español- (traducción de Espartaco Palma)</title>
<meta content="text/html; charset=UTF-8" http-equiv="content-type">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" media="screen" href="css/screen.css">
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-XXXXXXX-X']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<script type="text/javascript" src="javascript/jquery.js"></script>
<script type="text/javascript" src="javascript/jquery.hotkeys.js"></script>
<script type="text/javascript" src="javascript/UI.js"></script>
</head>
<body id="index_body">
<header id="index_header">
<a href="index.html">Git Immersion en Español</a>
</header>
<div id="attention">
<div class="wrapper">
<p><em>Git Immersion es un tour guiado que lo lleva por los fundamentos de Git, inspirado en la premisa de que para conocer algo, hay que hacerlo.</em></p>
<p>Git es un poderoso y sofisticado sistema para el control de versiones distribuido. Profundizar en el conocimiento de sus características abre a los desarrolladores un nuevo y liberador enfoque para la gestión del código fuente. El camino más seguro para dominar Git es sumergirse en sus utilerías y comandos, para experimentar de primera mano.</p>
<div id="attention_links">
<h1><span>Instalar Git</span></h1>
<a href="http://code.google.com/p/git-osx-installer" target="_blank">Mac</a>
<a href="http://code.google.com/p/msysgit" target="_blank">Windows</a>
<br><br>
<h1><span>Clientes Gráficos</span></h1>
<a href="http://gitx.frim.nl" target="_blank">Mac</a>
<a href="http://code.google.com/p/tortoisegit" target="_blank">Windows</a>
</div> <!-- /.attention_links -->
<a href="lab_01.html" id="start_immersion">Iniciar Git Immersion</a>
</div> <!-- /.wrapper -->
</div> <!-- /.attention -->
<div class="wrapper">
<div id="private_training">
<h1>We Provide Private Training</h1>
<p>
EdgeCase helps organizations access the full potential of the latest technologies and methodologies by offering structured training in areas such as Git, Ruby, Ruby on Rails, and Agile development. We specialize in building better software and staying on top of rapidly changing technologies. Let us bring that expertise to your business.
<br><br>
<a href="http://edgecase.com/contact" target="_blank">Get in contact with EdgeCase</a>
</p>
</div> <!-- /.private_training -->
<div id="license_and_edgecase">
<div id="license">
<h1>License</h1>
<a href="http://creativecommons.org/licenses/by-nc-sa/3.0/deed.es">
<img src="http://i.creativecommons.org/l/by-nc-sa/3.0/88x31.png">
GitImmersion Español se libera bajo licencia Creative Commons Atribución-NoComercial-CompartirIgual 3.0 (CC BY-NC-SA 3.0). Es una traducción del trabajo original de Jim Weirich (jim.weirich@gmail.com) en <a href="http://gitimmersion.com">http://gitimmersion.com</a>
</a>
</div>
<br><br>
<a id="brought_to_you_by" href="http://edgecase.com" target="_blank">
We Partner. We Build. We Teach.<br>
<img src="images/edgecase.png">
</a>
</div> <!-- /.license -->
<div id="other_resources">
<h1>Otros recursos sobre Git</h1>
<ul>
<li><a href="http://git-scm.com" target="_blank">git-scm.com</a></li>
<li><a href="http://github.com" target="_blank">github.com</a></li>
<li><a href="http://book.git-scm.com" target="_blank">book.git-scm.com</a></li>
<li><br><br><a href="http://pragprog.com/screencasts/v-jwsceasy/source-control-made-easy" target="_blank"><img src="images/SourceControlMadeEasy.jpg"></a></li>
</ul>
</div> <!-- /.other_resources -->
<div class="clear"></div>
</div> <!-- /.wrapper -->
</body>
</html>