-
-
Notifications
You must be signed in to change notification settings - Fork 432
Expand file tree
/
Copy pathgit-branch.html
More file actions
41 lines (34 loc) · 1.06 KB
/
git-branch.html
File metadata and controls
41 lines (34 loc) · 1.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Git Branches</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header class="page-header">
<h1>README Files, Wireframes, and Git Branches</h1>
<p class="subtitle">Core concepts used in modern web development</p>
</header>
<main class="content">
<article class="card">
<div class="card-body">
<h2>What is a branch in Git?</h2>
<p>
A Git branch is a separate line of development within a repository.
It allows developers to work on features or fixes independently.
</p>
<p>
Once changes are complete, branches can be merged back into the
main branch, keeping the project stable and organized.
</p>
<a href="index.html" class="button">← Back to Home</a>
</div>
</article>
</main>
<footer class="page-footer">
<p>Contact information will be added soon</p>
</footer>
</body>
</html>