I am trying to learn how to use Git and GitHub. I've made a simple html file and I'm trying to revert some changes.
I am using GitHub windows application and the repository is here: https://github.com/ionutincau/Ceau
My last 2 commits are "Add 13 to list" and "Add Accounts to list". I want to revert the commit "Add 13 to list" but I get this file:
<!DOCTYPE html>
<html>
<head>
<title>Hi</title>
</head>
<body>
<p>Hi, this is my first version</p>
<p>TODO List:</p>
<p>- Pictures</p>
<<<<<<< HEAD
<p>- 13</p>
<p>- Accounts</p>
=======
>>>>>>> parent of 76f0f70... Add 13 to list
</body>
</html>
What I need to do? How is this working?