Skip to content

lynettenyambura/BOOTCAMP1

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 

Repository files navigation

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 https://github.com/lynettenyambura

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. ("hello, world") C:\Users\USER\Desktop\bootcamp\labs>echo ("hello,world") ("hello,world" (hello, world) C:\Users\USER\Desktop\bootcamp\labs>echo (hello,world) (hello,world)

2: Cleaning up

Clear the contents of the current tab. cls enter

3: Listing

What’s the command to list all the files (and directories) on your Desktop directory? C:\Users\USER\Desktop>dir

4: Making directories

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

5: Navigating directories

Change to your Desktop, then change to bootcamp directory, and then the lab directory. cd C:\Users\USER\Desktop C:\Users\USER\Desktop>cd bootcamp C:\Users\USER\Desktop\bootcamp\labs>

6: Creating files

Create an empty file called file01 in the lab directory. C:\Users\USER\Desktop\bootcamp\labs>cd. >file01

7: Deleting directories

What is the command used to remove a directory named food and everything inside it. C:\Users\USER\Desktop\bootcamp\labs>rmdir food

Part C - Github

8: Download the GitHub desktop application

Download the GitHub desktop application.s

9: Pushing work to GitHub

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

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published