Skip to content
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[![Review Assignment Due Date](https://classroom.github.com/assets/deadline-readme-button-22041afd0340ce965d47ae6ef1cefeee28c7c493a6346c4f15d667ab976d596c.svg)](https://classroom.github.com/a/0uiMevno)
# git-group-tutorial

The purpose of this tutorial is to learn and apply git commands needed to collaborate on a team project.
Expand Down
4 changes: 4 additions & 0 deletions function.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
“This is a representation of an unfinished function a group member is working
on.

This is a new change from Marshall Loveland.
4 changes: 3 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
<title>GitHub Group Tutorial</title>
</head>
<body>
<a href="my-page.html">Your New Page</a>

<a href="my-page-marshall-loveland.html">Your New Page</a>
<a href="my-page-conflict.html">Your New Page</a>
</body>
</html>
12 changes: 12 additions & 0 deletions my-page-marshall-loveland.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<h1>This is the page Marshall added</h1>
<a href="index.html">Back</a>
</body>
</html>