27
loading...
This website collects cookies to deliver better user experience
sudo
instruction at the beginning of the command.{ apt | brew | choco } install git
git init
and it should say that the repository has been initialized and now we can start managing versions in our code.<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Wishlist</title>
</head>
<body>
<h1>Wish List for christmas</h1>
<ul>
<li>Be a superhero</li>
<li>Buy a Mansion with my junior salary</li>
<li>visit the <a href="https://scidroid.me">SciDroid's Web</a></li>
</ul>
</body>
</html>
git add index.html
git config --global user.name "John Doe"
git config --global user.email [email protected]
git commit -m "message"