diff --git a/cli-diagnostic/rhyme.txt b/cli-diagnostic/rhyme.txt new file mode 100644 index 0000000..ba0635f --- /dev/null +++ b/cli-diagnostic/rhyme.txt @@ -0,0 +1 @@ +"The rain in Spain falls mainly in the plain." diff --git a/diagnostic.md b/diagnostic.md index ed9e293..6f3501a 100644 --- a/diagnostic.md +++ b/diagnostic.md @@ -31,13 +31,13 @@ Using Atom, open up `diagnostic.md` and write your answers below (where indicate 5. Great Work! Back in the terminal, do `git status` to view your changes. What color is the file name? - + Red 6. Do `git add ` to stage your changes. Do `git status` again to see the newly staged file. What color is the file name now? - + Green 7. Let's commit these changes with `git commit ` and the commit message of `add temp.md and associated folders`. @@ -55,7 +55,7 @@ Using Atom, open up `diagnostic.md` and write your answers below (where indicate 1. Is `/Users/blah_blah/Desktop` a relative path or an absolute path? How do you know? - + Absolute path, the first / represents the root of the system. 2. Given: @@ -77,7 +77,7 @@ If we are in the `project` directory and use `cd planning`, is a relative or abs 3. Now suppose that we have an image file living inside our project. Would we refer to it with an absolute or relative path? Why? - + We can use relative paths which are a path from the directory or file we are currently in or absolute paths which are a path from our root directory.