Skip to main content
Version: v1.1

✏️ 1.1.1.4 Practice: Command Line Git

Goal: Here at Epicodus, we use the command line, Git and Github on a daily basis. The goal for this exercise is to practice the workflow you'll use daily.

Warm Up


Ask yourself the following questions before moving on:

  • What are the steps to make a Git commit?
  • What is the significance of the word 'main' in the command $ git push al main?
  • What is the difference between the local .git repository, and the repository created on Github?
  • How are the local .git repository, and the repository created on Github 'connected'?

Code


Goodbye World

Begin practicing the command line, Git commands and GitHub set up by building a "Goodbye World" web page that you push to a repository on GitHub. The steps you need to complete are below. You will need to use the previous lessons as reference for the correct syntax and commands to complete them.

  1. Create a new project directory in the Desktop directory called goodbye.
  2. Initialize a Git repository to start tracking your changes.
  3. Create an HTML file called goodbye.html.
  4. Open your project directory in your text editor.
  5. Add this HTML code to your goodbye.html file:
goodbye.html
<h1>Goodbye</h1>
<h2>A program to bid our friends farewell all over the world.</h2>

<ul>
<li>English: Goodbye, friends!</li>
<li>Spanish: Adios, amigos!</li>
</ul>
  1. Save the file and look at it in your browser.
  2. Check the status of the changes that Git is watching.
  3. Add the HTML file for tracking.
  4. Commit your changes.
  5. Add a few more lines of goodbyes to your HTML file (copy an existing line and write over the text leaving the <li> and </li> at the beginning and end of the lines).
  6. Save the file and commit your changes.
  7. Create a GitHub repository.
  8. Push your changes to GitHub.