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
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)
Clear the contents of the current tab. cls enter
What’s the command to list all the files (and directories) on your Desktop directory? C:\Users\USER\Desktop>dir
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
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>
Create an empty file called file01 in the lab directory. C:\Users\USER\Desktop\bootcamp\labs>cd. >file01
What is the command used to remove a directory named food and everything inside it. C:\Users\USER\Desktop\bootcamp\labs>rmdir food
Download the GitHub desktop application.s
Using the GitHub desktop application, push your code to your new repository.