There was an error while loading. Please reload this page.
1 parent 2ed7032 commit 43fb887Copy full SHA for 43fb887
1 file changed
Wireframe/index.html
@@ -60,8 +60,16 @@ <h3>Summary</h3>
60
<h2>What is a branch in Git?</h2>
61
<h3>Summary</h3>
62
<p>
63
-
+ A branch in Git is an independent line of development.
64
+ It lets you work on changes without affecting the main version of the project.
65
+ You can think of a branch like a parallel workspace:
66
+ <ul>
67
+ <li>The main project stays stable</li>
68
+ <li>You make changes safely in another branch</li>
69
+ <li>Later, you can merge those changes back into the main project</li>
70
+ </ul>
71
</p>
72
+ <a href="https://www.w3schools.com/GIT/git_branch.asp?remote=github">Read more</a>
73
</article>
74
</main>
75
<footer>
0 commit comments