Skip to content

Latest commit

 

History

History
67 lines (37 loc) · 1.53 KB

README.md

File metadata and controls

67 lines (37 loc) · 1.53 KB

Part A - Account Creation

0: Creating a GitHub account

Go to github.com and create an account. After you have verified your email, create an empty repository in your new account, and name it bootcamp

Github username:Memphis076

Part B - Terminal Commands

1: Our first command

Write a command that prints out the string “hello, world”. Extra credit: As in Listing 1, do it two different ways, both with and without using quotation marks.

print("hello, world") print('"hello, world"')

2: Cleaning up

Clear the contents of the current tab.

Clear-Content

3: Listing

What’s the command to list all the files (and directories) on your Desktop directory?

dir ~/Desktop

4: Making directories

Make the directory bootcamp on your Desktop and, within it, the directory labs (i.e., ~/Desktop/bootcamp/labs).

cd ~/Desktop mkdir bootcamp cd bootcamp mkdir labs

5: Navigating directories

Change to your Desktop, then change to bootcamp directory, and then the lab directory.

cd ~/Desktop cd bootcamp cd labs

6: Creating files

Create an empty file called file01 in the lab directory.

New-item file01

7: Deleting directories

What is the command used to remove a directory named food and everything inside it.

rmdir foods

Part C - Github

8: Download the GitHub desktop application

Download the GitHub desktop application.

9: Pushing work to GitHub

Using the GitHub desktop application, push your code to your new repository.