-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.html
More file actions
140 lines (108 loc) · 6.18 KB
/
Index.html
File metadata and controls
140 lines (108 loc) · 6.18 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!DOCTYPE html>
<html lang="en">
<head>
<title>GitHub</title>
<link rel="stylesheet" href="Css/Index.css">
</head>
<body>
<main>
<h1>GitHub <a href="aboutMe.html" target="_blank">My profile</a></h1>
<ul>
<li> <a href="#Section1">What is GitHub?</a></li>
<li> <a href="#Section2">What is version control?</a></li>
<li> <a href="#Section3">What is Git?</a></li>
<li> <a href="#Section4">The most important</a></li>
</ul>
<div id="Section0">
<div id="Section1">
<h2>What Is GitHub?</h2><br>
<div class="Elements1">
<h3>GITHUB</h3><br>
<p>At a high level, GitHub is a <strong> <em> website </em></strong> and <strong> <em> cloud-based
</em></strong> service that helps developers store and manage their code, as well as track
and control changes to their code. To understand exactly what GitHub is, you need to know two
connected principles:</p><br>
<h3>
<ul>
<li>Version Control</li> <img src="https://learn-cf.ni.com/products/intro_scc_and_vcs.png"
alt="Version_Controls" width="200" height="100">
<video src="Videos/Instalación de Git en Windows paso a paso.mp4" width="400" height="100"
controls></video>
<li>Git</li> <img src="Img/GIT.png" alt="Git" width="200" height="200">
</ul>
</h3> <br>
<p> In this article, we’ll first explain those two principles. Then, we’ll
dig into more about GitHub and how you can actually use <strong> <em>GitHub </em> </strong>
to work with <strong> <em>WordPress</em></strong> and/or <strong> <em>Kinsta. </em></strong></p>
</div>
</div>
<!-- -->
<div id="Section2">
<h2>What Is Version Control?</h2><br>
<div class="Elements2">
<h3>Version control helps developers track and manage changes
to a software project’s code. As a software project grows,
version control becomes essential. Take WordPress…</h3><br>
<p>At this point, WordPress is a pretty big project. If a core developer
wanted to work on one specific part of the WordPress codebase, it wouldn’t
be safe or efficient to have them directly edit the “official” source code.
Instead, version control lets developers safely work through
branching and merging.
With branching, a developer duplicates part of the source code
(called the repository). The developer can then safely make changes
to that part of the code without affecting the rest of the project.
Then, once the developer gets his or her part of the code working properly,
he or she can merge that code back into the main source code to make it official.
All of these changes are then tracked and can be reverted if need be.</p>
<ul>
<li>Inicio</li>
</ul>
</div>
</div>
<!-- -->
<div id="Section3">
<h2>What Is Git?</h2><br>
<div class="Elements3">
<h3>Git is a specific open-source version control system created by Linus Torvalds in 2005.</h3><br>
<p>Specifically, Git is a distributed version control system, which means
that the entire codebase and history is available on every developer’s
computer, which allows for easy branching and merging.
According to a Stack Overflow developer survey, over 87% of developers use Git.</p>
<img src="Img/GitHubb.webp" alt="" width="400" height="200">
</div>
</div>
<div id="Section4">
<h2>The most important</h2><br>
<div class="Elements4">
<!--<h3>The most important</h3><br>-->
<p>GitHub is a for-profit company that offers a cloud-based Git
repository hosting service. Essentially, it makes it a lot easier
for individuals and teams to use Git for version control
and collaboration.
GitHub’s interface is user-friendly enough so even novice
coders can take advantage of Git. Without GitHub, using Git
generally requires a bit more technical savvy and use of the command
line.
GitHub is so user-friendly, though, that some people even use
GitHub to manage other types of
projects – like writing books.
Additionally, anyone can sign up and host a public code repository
for free, which makes GitHub
especially popular with open-source projects.
As a company, GitHub makes money by selling hosted private code
repositories, as well as other business-focused plans that make it
easier for organizations to manage team members and
security.</p>
<ul>
<li>We utilize Github extensively at Kinsta to manage and develop internal projects</li>
</ul>
</div>
</div>
</div>
<h2 class="Medios">MEDIOS</h2>
<h3>Visit GutHub Page ↴</h3>
<a href="https://github.com/" target="_blank">
<img src="Img/GitHub.jpeg" alt="GitHubx" width="400" height="200"></a>
</main>
</body>
</html>