This assessment contains 2 parts. Each part is explained below. You will have 60 minutes to complete the entire assessment (Parts 1 and 2).
- Fork a copy of this repository to your GitHub account.
- Clone the forked copy to your computer.
- Add an
index.html
file to the root directory of the project. - Open the index.html file in the nano text editor.
- Add the following code to your
index.html
file.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>HTML 5 Boilerplate</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Command Line and Git SBA</h1>
<script src="index.js"></script>
</body>
</html>
- Add the changes to the staging area.
- Save the the changes to your local repository. Include as your message the full command you used to create the index.html file in step 3.
- Send the changes to your remote repository.
- Create a pull request from your repository's main branch to this repository's main branch.
- You will need to create a replit.com account to complete this portion. This video provides directions: https://www.youtube.com/watch?v=ZAC0TQEU5gI
- Open up our replit teams page and navigate to the Command Line and Git SBA project
- Click on the "Console" tab to run commands in a way similar to Git Bash or Terminal
- Format your commands with single spaces between commands, options, and arguments. For example,
cp file1.txt file2.txt my_directory
ls -a
- You MUST use command line commands to complete all steps otherwise we will not be able to give you credit for all steps. PLEASE NOTE: There is a button that says "run" at the top of the page. DO NOT press this button as it will clear your commands from your command history!
- Create a folder named
folder1
- Navigate to
folder1
- Add a file named
file1.txt
tofolder1
- Use text commands to add the following text to
file1.txt
:"grapes\napples\noranges\nlimes\nlemons\napples\ngrapes\npears\nberries\nlimes"
There should be one item per line in the file. Hint: You will need to use -e along with your command to ensure each item is on separate line (ex.command -e "text here"
) - Check the contents of
file1.txt
- From your current location in the file system, create a folder named
folder2
that is a sibling offolder1
using a single command - From your current location in the file system, Navigate to
folder2
using a single command - Add a file named
file2.txt
infolder2
- Use text commands to add the following text to
file2.txt
:"grapes\ngrapes\napples\noranges\nlimes\nlimes\nlemons\nlemons\ngrapes\npears\npears\nberries"
There should be one item per line in the file. Hint: you will need to use -e along with your command to ensure each item is on separate line (ex.command -e "text here"
) - Run the command:
exit
in the console - Click the
Shell
tab. Located next to theConsole
tab in your repl - Run the command
cat ~/.bash_history > my-history.txt
- Check that
my-history.txt
contains your complete command history - Take a screenshot of the Console showing the commands you used to complete the assignment
- Submit your screenshot to the Canvas submission page for this session
- Submit your replit project using the submit button on replit