|
7 | 7 | <link rel="stylesheet" href="style.css" />
|
8 | 8 | </head>
|
9 | 9 | <body>
|
10 |
| - <header> |
11 |
| - <h1>Git</h1> |
12 |
| - <p>Free,Open Source Distributed Version Control</p> |
13 |
| - </header> |
14 |
| - <main> |
15 |
| - <article> |
16 |
| - <img |
17 |
| - src="./images/mohammad-rahmani-unsplash.webp" |
18 |
| - alt="A desktop screen showing programming code in a dark theme editor." |
19 |
| - /> |
20 |
| - <h2>What is git</h2> |
21 |
| - <p> |
22 |
| - Git is a distributed version control system that tracks code changes |
23 |
| - and enables collaboration. Created by Linus Torvalds, it stores a |
24 |
| - project’s history in "commits," snapshots of all files at specific |
25 |
| - points.<br /><br /> |
26 |
| - Key features include branches, which allow for multiple development |
27 |
| - lines, and merging, to combine changes. Users can work offline and |
28 |
| - sync updates with remote repositories (like GitHub) using push and |
29 |
| - pull commands. |
30 |
| - </p> |
31 |
| - <a |
32 |
| - href="https://en.wikipedia.org/wiki/Git" |
33 |
| - aria-label="read more about git on wikipedia page" |
34 |
| - >For more information</a |
35 |
| - > |
36 |
| - </article> |
37 |
| - <article> |
38 |
| - <img |
39 |
| - src="./images/Git-Logo-1788C.webp" |
40 |
| - alt="Git logo" |
41 |
| - loading="lazy" |
42 |
| - /> |
43 |
| - |
44 |
| - <h2>Why do developers need Git?</h2> |
45 |
| - <p> |
46 |
| - Git provides a distributed, offline-friendly system for tracking |
47 |
| - code changes and supporting collaboration. Its branching and merging |
48 |
| - allow parallel development without impacting the main codebase.<br /><br /> |
49 |
| - Git’s detailed history simplifies tracking and reverting changes, |
50 |
| - while integration with platforms like GitHub enhances team |
51 |
| - workflows, code reviews, and project deployment. |
52 |
| - </p> |
53 |
| - <a |
54 |
| - href="https://en.wikipedia.org/wiki/Git" |
55 |
| - aria-label="read more about git on wikipedia page" |
56 |
| - >Read more</a |
57 |
| - > |
58 |
| - </article> |
59 |
| - <article> |
60 |
| - <img |
61 |
| - src="./images/Git-Logo-1788C.webp" |
62 |
| - alt="Git logo" |
63 |
| - loading="lazy" |
64 |
| - /> |
65 |
| - <h2>What is a branch in Git?</h2> |
66 |
| - <p> |
67 |
| - Git branch is essentially a pointer to a snapshot of your |
68 |
| - changes.When working on fixing a bug, or adding a new features, you |
69 |
| - create a new branch. This allows multiple people to work on |
70 |
| - different issues without interfering with each other code.<br /><br /> |
71 |
| - |
72 |
| - Git branch also allows for smooth code review and testing via pull |
73 |
| - request or merge request. |
74 |
| - </p> |
75 |
| - <a |
76 |
| - href="https://www.atlassian.com/git/tutorials/using-branches#:~:text=Git%20branches%20are%20effectively%20a,branch%20to%20encapsulate%20your%20changes." |
77 |
| - aria-label="read more about git branches on artlassian website" |
78 |
| - >Read more</a |
79 |
| - > |
80 |
| - </article> |
81 |
| - </main> |
82 |
| - |
83 |
| - <footer> |
| 10 | + <header> |
| 11 | + <h1>Git</h1> |
| 12 | + <p>Free,Open Source Distributed Version Control</p> |
| 13 | + </header> |
| 14 | + <main> |
| 15 | + <article> |
| 16 | + <img |
| 17 | + src="./images/mohammad-rahmani-unsplash.webp" |
| 18 | + alt="A desktop screen showing programming code in a dark theme editor." |
| 19 | + /> |
| 20 | + <h2>What is git</h2> |
| 21 | + <p> |
| 22 | + Git is a distributed version control system that tracks code changes |
| 23 | + and enables collaboration. Created by Linus Torvalds, it stores a |
| 24 | + project’s history in "commits," snapshots of all files at specific |
| 25 | + points.<br /><br /> |
| 26 | + Key features include branches, which allow for multiple development |
| 27 | + lines, and merging, to combine changes. Users can work offline and |
| 28 | + sync updates with remote repositories (like GitHub) using push and |
| 29 | + pull commands. |
| 30 | + </p> |
| 31 | + <a |
| 32 | + href="https://en.wikipedia.org/wiki/Git" |
| 33 | + aria-label="read more about git on wikipedia page" |
| 34 | + >For more information</a |
| 35 | + > |
| 36 | + </article> |
| 37 | + <article> |
| 38 | + <img src="./images/Git-Logo-1788C.webp" alt="Git logo" loading="lazy" /> |
| 39 | + <h2>Why do developers need Git?</h2> |
| 40 | + <p> |
| 41 | + Git provides a distributed, offline-friendly system for tracking code |
| 42 | + changes and supporting collaboration. Its branching and merging allow |
| 43 | + parallel development without impacting the main codebase.<br /><br /> |
| 44 | + Git’s detailed history simplifies tracking and reverting changes, |
| 45 | + while integration with platforms like GitHub enhances team workflows, |
| 46 | + code reviews, and project deployment. |
| 47 | + </p> |
| 48 | + <a |
| 49 | + href="https://en.wikipedia.org/wiki/Git" |
| 50 | + aria-label="read more about git on wikipedia page" |
| 51 | + >Read more</a |
| 52 | + > |
| 53 | + </article> |
| 54 | + <article> |
| 55 | + <img src="./images/Git-Logo-1788C.webp" alt="Git logo" loading="lazy" /> |
| 56 | + <h2>What is a branch in Git?</h2> |
84 | 57 | <p>
|
85 |
| - For more information please contact: [email protected] |
| 58 | + Git branch is essentially a pointer to a snapshot of your changes.When |
| 59 | + working on fixing a bug, or adding a new features, you create a new |
| 60 | + branch. This allows multiple people to work on different issues |
| 61 | + without interfering with each other code.<br /><br /> |
| 62 | + Git branch also allows for smooth code review and testing via pull |
| 63 | + request or merge request. |
86 | 64 | </p>
|
87 |
| - </footer> |
| 65 | + <a |
| 66 | + href="https://www.atlassian.com/git/tutorials/using-branches#:~:text=Git%20branches%20are%20effectively%20a,branch%20to%20encapsulate%20your%20changes." |
| 67 | + aria-label="read more about git branches on artlassian website" |
| 68 | + >Read more</a |
| 69 | + > |
| 70 | + </article> |
| 71 | + </main> |
| 72 | + |
| 73 | + <footer> |
| 74 | + <p>For more information please contact: [email protected]</p> |
| 75 | + </footer> |
88 | 76 | </body>
|
89 | 77 | </html>
|
0 commit comments